mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-17 01:13:11 +00:00
12 lines
202 B
Rust
12 lines
202 B
Rust
![]() |
trait Array: Sized {}
|
||
|
|
||
|
fn f<T: Array>(x: &T) {
|
||
|
let _ = x
|
||
|
//~^ ERROR `Array` cannot be made into an object
|
||
|
as
|
||
|
&Array;
|
||
|
//~^ ERROR `Array` cannot be made into an object
|
||
|
}
|
||
|
|
||
|
fn main() {}
|