mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 15:06:20 +00:00
10 lines
160 B
Rust
10 lines
160 B
Rust
#![feature(negative_impls)]
|
|
|
|
struct Foo;
|
|
|
|
trait Bar { }
|
|
unsafe impl Bar for Foo { } //~ ERROR implementing the trait `Bar` is not unsafe [E0199]
|
|
|
|
fn main() {
|
|
}
|