Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
impl-trait
/
issue-68532.rs
blob: 01a7af0aee40e872bdd238aa0d15f4203f4a3e86 [
file
] [
log
] [
blame
]
// 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
()
{}