rust/tests/ui/track-diagnostics/track6.rs
2023-01-11 09:32:08 +00:00

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() {}