summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0199.rs
blob: c95afa3f97d4a64f1d4d4d6c1f9ebad67b333ace (plain)
1
2
3
4
5
6
7
8
9
#![feature(optin_builtin_traits)]

struct Foo;

trait Bar { }
unsafe impl Bar for Foo { } //~ ERROR implementing the trait `Bar` is not unsafe [E0199]

fn main() {
}