gust/traits

14 lines
101 B
Text
Raw Permalink Normal View History

2021-01-25 22:08:34 +00:00
trait Foo {
fn foo();
}
struct Bar impls Foo {
}
fn test(f: impl Foo) {
}
x = Bar {}
test(x)