mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
11 lines
234 B
Rust
11 lines
234 B
Rust
use std::mem;
|
|
|
|
trait Misc {}
|
|
|
|
fn size_of_copy<T: Copy+?Sized>() -> usize { mem::size_of::<T>() }
|
|
|
|
fn main() {
|
|
size_of_copy::<dyn Misc + Copy>();
|
|
//~^ ERROR only auto traits can be used as additional traits in a trait object
|
|
}
|