blob: c95afa3f97d4a64f1d4d4d6c1f9ebad67b333ace [file] [log] [blame]
#![feature(optin_builtin_traits)]
struct Foo;
trait Bar { }
unsafe impl Bar for Foo { } //~ ERROR implementing the trait `Bar` is not unsafe [E0199]
fn main() {
}