blob: 2b50ee9b42210951e8ac08f3008b88fc1dd42091 [file] [log] [blame]
// run-pass
trait Foo {
fn bar(&self) -> String {
format!("test")
}
}
enum Baz {
Quux
}
impl Foo for Baz {
}
pub fn main() {
let q = Baz::Quux;
assert_eq!(q.bar(), "test".to_string());
}