7 lines
78 B
Rust
7 lines
78 B
Rust
struct Foo(int);
|
|
|
|
fn main() {
|
|
let x: Foo = Foo(2);
|
|
assert *x == 2;
|
|
}
|
|
|