fff01ccfa8
Fix a number of uncovered deficiencies in diagnostics
21 lines
393 B
Rust
21 lines
393 B
Rust
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() {}
|