summary refs log tree commit diff
path: root/src/test/compile-fail/iface-test.rs
blob: 3f3f28f21ed852f429ac5badb333abbc244ca2a5 (plain)
1
2
3
4
5
iface foo { fn foo(); }

impl of int for uint { fn foo() {} } //~ ERROR interface

fn main() {}