Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
const-generic-default-wont-borrowck.fixed
blob: da48c62df21010325040abc16b090d60b19ed182 [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
pub
struct
X
<
const
N
:
usize
=
{
let
s
:
&
'static str = ""; s.len() //~ ERROR E0381
}>;
fn main() {}