Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
impl-trait
/
issue-68532.rs
blob: ce653ee058f47453ca4c10846503f1fe96f476b5 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
pub
struct
A
<
'a>(&'
a
());
impl
<
'a> A<'
a
>
{
const
N
:
usize
=
68
;
pub
fn
foo
(&
self
)
{
let
_b
=
[
0
;
Self
::
N
];
}
}
fn
main
()
{}