mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 01:05:39 +03:00
12 lines
198 B
Rust
12 lines
198 B
Rust
//@ compile-flags:-Zunstable-options --remap-path-prefix={{src-base}}=
|
|
|
|
pub struct MyStruct {
|
|
field: u32,
|
|
}
|
|
|
|
impl MyStruct {
|
|
pub fn new() -> MyStruct {
|
|
MyStruct { field: 3 }
|
|
}
|
|
}
|