rust/tests/ui/rfcs/rfc-1937-termination-trait/termination-trait-impl-trait.rs
2023-06-05 16:09:46 +00:00

4 lines
157 B
Rust

// Tests that an `impl Trait` that is not `impl Termination` will not work.
fn main() -> impl Copy { }
//~^ ERROR `main` has invalid return type `impl Copy`