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