mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
11 lines
177 B
Rust
11 lines
177 B
Rust
#![crate_type = "rlib"]
|
|
#![feature(fundamental)]
|
|
|
|
pub trait MyCopy { }
|
|
impl MyCopy for i32 { }
|
|
|
|
pub struct MyStruct<T>(T);
|
|
|
|
#[fundamental]
|
|
pub struct MyFundamentalStruct<T>(T);
|