rust/src/test/ui/issues/issue-21946.stderr

16 lines
456 B
Plaintext
Raw Normal View History

2018-07-15 14:11:54 -07:00
error[E0275]: overflow evaluating the requirement `<FooStruct as Foo>::A`
2018-12-25 08:56:47 -07:00
--> $DIR/issue-21946.rs:7:6
2018-07-15 14:11:54 -07:00
|
LL | impl Foo for FooStruct {
| ^^^
2019-02-23 23:25:30 +01:00
error[E0275]: overflow evaluating the requirement `<FooStruct as Foo>::A`
--> $DIR/issue-21946.rs:9:5
|
LL | type A = <FooStruct as Foo>::A;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
2018-07-15 14:11:54 -07:00
For more information about this error, try `rustc --explain E0275`.