rust/tests/ui/error-codes/E0200.rs

9 lines
87 B
Rust
Raw Normal View History

2016-06-01 14:30:13 +00:00
struct Foo;
unsafe trait Bar { }
impl Bar for Foo { } //~ ERROR E0200
fn main() {
}