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