Sign in
android
/
toolchain
/
rustc
/
7e5f8cb0b1c93bc5741c51ce83c4bd831e386441
/
.
/
tests
/
ui
/
associated-consts
/
double-elided.rs
blob: 6831b599374ad897d7472775158d3988a765d78a [
file
] [
log
] [
blame
]
//@ check-pass
struct
S
;
impl
S
{
const
C
:
&&
str
=
&
""
;
// Now resolves to `&'static &'static str`.
}
fn
main
()
{}