15 lines
165 B
Rust
15 lines
165 B
Rust
|
// compile-flags: -Z track-diagnostics
|
||
|
// error-pattern: created at
|
||
|
|
||
|
|
||
|
|
||
|
pub trait Foo {
|
||
|
fn bar();
|
||
|
}
|
||
|
|
||
|
impl <T> Foo for T {
|
||
|
default fn bar() {}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|