Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
4b3ece475d6e77465a30c8b53d7e1e9e861e4b79
/
.
/
tests
/
ui
/
traits
/
composition-trivial.rs
blob: 90e5dcd68e8c4ad1a2fa88f1cc4af1a74f7fe7e3 [
file
] [
log
] [
blame
]
// run-pass
// pretty-expanded FIXME #23616
trait
Foo
{
fn
foo
(&
self
);
}
trait
Bar
:
Foo
{
fn
bar
(&
self
);
}
pub
fn
main
()
{}