mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
9 lines
207 B
Rust
9 lines
207 B
Rust
struct Lorem {
|
|
ipsum: Ipsum //~ ERROR cannot find type `Ipsum`
|
|
}
|
|
|
|
fn main() {
|
|
// Testing `as` casts, so deliberately not using `ptr::null`.
|
|
let _foo: *mut Lorem = 0 as *mut _; // no error here
|
|
}
|