about summary refs log tree commit diff
path: root/tests/ui/macros/macro-interpolation.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-08-09 15:24:06 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2023-08-17 09:03:58 +1000
commit4ab3e9d5b9b1f4163cc5d3208c0c3f7f99f3b2f6 (patch)
tree0c92549fdda242702aca89bcc14c00525e4906c9 /tests/ui/macros/macro-interpolation.rs
parente8f733370f45dca86356a7358642702c7438fca8 (diff)
downloadrust-4ab3e9d5b9b1f4163cc5d3208c0c3f7f99f3b2f6.tar.gz
rust-4ab3e9d5b9b1f4163cc5d3208c0c3f7f99f3b2f6.zip
Add a failing case to `tests/ui/macros/macro-interpolation`.
This test currently tests the successful paths for the
`Interpolated`/`NtTy`/`Path` case in `parse_path_inner`, but it doesn't
test the failure path.
Diffstat (limited to 'tests/ui/macros/macro-interpolation.rs')
-rw-r--r--tests/ui/macros/macro-interpolation.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/macros/macro-interpolation.rs b/tests/ui/macros/macro-interpolation.rs
index 35003a79ad7..48c1f19e777 100644
--- a/tests/ui/macros/macro-interpolation.rs
+++ b/tests/ui/macros/macro-interpolation.rs
@@ -1,5 +1,3 @@
-// run-pass
-
 macro_rules! overly_complicated {
     ($fnname:ident, $arg:ident, $ty:ty, $body:block, $val:expr, $pat:pat, $res:path) =>
     ({
@@ -21,12 +19,14 @@ macro_rules! qpath {
 
     (ty, <$type:ty as $trait:ty>::$name:ident) => {
         <$type as $trait>::$name
+        //~^ ERROR expected identifier, found `!`
     };
 }
 
 pub fn main() {
     let _: qpath!(path, <str as ToOwned>::Owned);
     let _: qpath!(ty, <str as ToOwned>::Owned);
+    let _: qpath!(ty, <str as !>::Owned);
 
     assert!(overly_complicated!(f, x, Option<usize>, { return Some(x); },
                                Some(8), Some(y), y) == 8)