summary refs log tree commit diff
path: root/src/test/ui/coherence/coherence-default-trait-impl.rs
blob: db24662e2d5add83e7f23c749aa8391c4339b52c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![feature(optin_builtin_traits)]

auto trait MySafeTrait {}

struct Foo;

unsafe impl MySafeTrait for Foo {}
//~^ ERROR E0199

unsafe auto trait MyUnsafeTrait {}

impl MyUnsafeTrait for Foo {}
//~^ ERROR E0200

fn main() {}