Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
missing
/
undeclared-generic-parameter.rs
blob: eebae215c8813d661d9c5e51fe86d6fcf03f31aa [
file
]
struct
A
;
impl
A
<
B
>
{}
//~^ ERROR cannot find type `B` in this scope
//~| ERROR struct takes 0 generic arguments but 1 generic argument was supplied
fn
main
()
{}