Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
ui
/
object-safety
/
assoc_const_bounds_sized.rs
blob: 2a76e5dce2b49982f756f317183d0b60b062f93f [
file
] [
log
] [
blame
]
trait
Foo
{
const
BAR
:
bool
where
//~ ERROR: expected one of `!`, `(`, `+`, `::`, `;`, `<`, or `=`, found keyword `where`
Self
:
Sized
;
}
fn
foo
(
_
:
&
dyn
Foo
)
{}
fn
main
()
{}