Sign in
fuchsia
/
third_party
/
rust
/
e356279bdfe6840236877b298f0c577e0f9221ff
/
.
/
tests
/
ui
/
on-unimplemented
/
issue-104140.rs
blob: ade3f727004abe27048784e79c36b2f242bea04b [
file
] [
log
] [
blame
]
#![
feature
(
rustc_attrs
)]
trait
Foo
{}
#[
rustc_on_unimplemented
]
//~ ERROR malformed `rustc_on_unimplemented` attribute input
impl
Foo
for
u32
{}
fn
main
()
{}