mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 11:11:14 +00:00
13 lines
146 B
Rust
13 lines
146 B
Rust
//@ edition: 2021
|
|
|
|
trait Has {
|
|
fn has() {}
|
|
}
|
|
|
|
trait HasNot {}
|
|
|
|
fn main() {
|
|
HasNot::has();
|
|
//~^ ERROR expected a type, found a trait
|
|
}
|