mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-29 20:02:35 +03:00
041e54bd92
Fix #80476.
5 lines
143 B
Rust
5 lines
143 B
Rust
fn main() {
|
|
let x : (impl Copy,) = (true,);
|
|
//~^ `impl Trait` only allowed in function and inherent method argument and return types
|
|
}
|