Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
error-codes
/
E0437.rs
blob: f8c15007d4ee518be05f83e882700557837e2c4a [
file
] [
log
] [
blame
]
trait
Foo
{}
impl
Foo
for
i32
{
type
Bar
=
bool
;
//~ ERROR E0437
}
fn
main
()
{
}