Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
missing
/
undeclared-generic-parameter.rs
blob: eebae215c8813d661d9c5e51fe86d6fcf03f31aa [
file
] [
log
] [
blame
] [
edit
]
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
()
{}