mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
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() {}
|