about summary refs log tree commit diff
path: root/compiler/rustc_error_codes/src/error_codes/E0800.md
blob: 3e08cd499b7e687665a15874e6d5eae92c2a2647 (plain)
1
2
3
4
5
6
7
8
9
10
11
A type or const parameter of the given name is not in scope.

Erroneous code examples:

```compile_fail,E0800
fn missing() -> impl Sized + use<T> {}
```

To fix this error, please verify you didn't misspell the type or const
parameter, or double-check if you forgot to declare the parameter in
the list of generics.