mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-24 12:41:29 +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
|
|
}
|