Sign in
rust
/
rust
/
548b5d2406cb0a79d67e745dc3bf45e7eddbb607
/
.
/
tests
/
ui
/
issues
/
issue-27078.rs
blob: 5f09b9587b15a0d2bdb58866dc90c0064bcc98e8 [
file
] [
log
] [
blame
]
trait
Foo
{
const
BAR
:
i32
;
fn
foo
(
self
)
->
&
'
static
i32
{
//~^ ERROR the size for values of type
&<
Self
>::
BAR
}
}
fn
main
()
{}