diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/resolve/raw-ident-in-path.stderr | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/ui/resolve/raw-ident-in-path.stderr b/src/test/ui/resolve/raw-ident-in-path.stderr new file mode 100644 index 000000000..771dacbbb --- /dev/null +++ b/src/test/ui/resolve/raw-ident-in-path.stderr @@ -0,0 +1,9 @@ +error[E0412]: cannot find type `r#break` in the crate root + --> $DIR/raw-ident-in-path.rs:3:17 + | +LL | type A = crate::r#break; + | ^^^^^^^ not found in the crate root + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0412`. |