rust/tests/ui/impl-trait/issues/issue-83929-impl-trait-in-generic-default.rs
2023-01-11 09:32:08 +00:00

13 lines
349 B
Rust

struct Foo<T = impl Copy>(T);
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
type Result<T, E = impl std::error::Error> = std::result::Result<T, E>;
//~^ ERROR `impl Trait` only allowed in function and inherent method return types
// should not cause ICE
fn x() -> Foo {
Foo(0)
}
fn main() -> Result<()> {}