blob: cb4cf6de1efe976de9bd93fbc45e7cc186c22a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#![feature(auto_traits)]
#![feature(negative_impls)]
unsafe auto trait Trait {
type Output; //~ ERROR E0380
}
fn call_method<T: Trait>(x: T) {}
fn main() {
// ICE
call_method(());
}
|