mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 09:36:40 +00:00
12 lines
107 B
Rust
12 lines
107 B
Rust
//@ check-pass
|
|
|
|
trait Foo {
|
|
fn foo(&self);
|
|
}
|
|
|
|
trait Bar : Foo {
|
|
fn bar(&self);
|
|
}
|
|
|
|
pub fn main() {}
|