mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
9 lines
155 B
Rust
9 lines
155 B
Rust
// aux-build:issue-56943.rs
|
|
|
|
extern crate issue_56943;
|
|
|
|
fn main() {
|
|
let _: issue_56943::S = issue_56943::S2;
|
|
//~^ ERROR mismatched types [E0308]
|
|
}
|