2017-12-23 23:38:09 +02:00
|
|
|
struct Lorem {
|
|
|
|
|
ipsum: Ipsum //~ ERROR cannot find type `Ipsum`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
2022-06-05 12:00:43 -04:00
|
|
|
// Testing `as` casts, so deliberately not using `ptr::null`.
|
|
|
|
|
let _foo: *mut Lorem = 0 as *mut _; // no error here
|
2017-12-23 23:38:09 +02:00
|
|
|
}
|