gust/traits
2021-01-25 16:08:34 -06:00

13 lines
101 B
Text

trait Foo {
fn foo();
}
struct Bar impls Foo {
}
fn test(f: impl Foo) {
}
x = Bar {}
test(x)