mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
324 B
Rust
17 lines
324 B
Rust
trait Q<T:?Sized> {}
|
|
trait Foo where u32: Q<Self> {
|
|
fn foo(&self);
|
|
}
|
|
|
|
impl Q<()> for u32 {}
|
|
impl Foo for () {
|
|
fn foo(&self) {
|
|
println!("foo!");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let _f: Box<dyn Foo> = //~ ERROR `Foo` cannot be made into an object
|
|
Box::new(()); //~ ERROR `Foo` cannot be made into an object
|
|
}
|