Files
rust/tests/ui/consts/error-is-freeze.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
435 B
Plaintext
Raw Normal View History

2024-12-26 19:13:50 +00:00
error[E0412]: cannot find type `UndefinedType` in this scope
--> $DIR/error-is-freeze.rs:4:17
|
LL | foo: Option<UndefinedType>,
| ^^^^^^^^^^^^^ not found in this scope
|
help: you might be missing a type parameter
|
LL | struct MyStruct<UndefinedType> {
| +++++++++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0412`.