mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-14 01:25:54 +00:00
9 lines
119 B
Rust
9 lines
119 B
Rust
|
// compile-flags: -Z track-diagnostics
|
||
|
// error-pattern: created at
|
||
|
|
||
|
struct A;
|
||
|
struct B;
|
||
|
const S: A = B;
|
||
|
|
||
|
fn main() {}
|