mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 10:37:22 +00:00
10 lines
141 B
Rust
10 lines
141 B
Rust
// run-pass
|
|
|
|
// https://github.com/rust-lang/rust/issues/37448
|
|
|
|
fn main() {
|
|
struct A;
|
|
const FOO: &A = &(A as A);
|
|
let _x = FOO;
|
|
}
|