blob: 072243d881ca68f1507b631ef6f47cfb532f035f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
struct S;
impl S {
#[derive(Debug)] //~ ERROR `derive` may only be applied to structs, enums and unions
fn f() {
file!();
}
}
trait Tr1 {
#[derive(Debug)] //~ ERROR `derive` may only be applied to structs, enums and unions
fn f();
}
trait Tr2 {
#[derive(Debug)] //~ ERROR `derive` may only be applied to structs, enums and unions
type F;
}
fn main() {}
|