rust/src/test/compile-fail/staticness-mismatch.rs

11 lines
139 B
Rust
Raw Normal View History

trait foo {
static fn bar();
}
2012-08-07 20:10:06 -05:00
impl int: foo {
fn bar() {} //~ ERROR self type does not match the trait method's
}
fn main() {}