summaryrefslogtreecommitdiffstats
path: root/tests/ui/macros/cross-crate-pat-span.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/cross-crate-pat-span.rs')
-rw-r--r--tests/ui/macros/cross-crate-pat-span.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/macros/cross-crate-pat-span.rs b/tests/ui/macros/cross-crate-pat-span.rs
new file mode 100644
index 000000000..ed67142ce
--- /dev/null
+++ b/tests/ui/macros/cross-crate-pat-span.rs
@@ -0,0 +1,12 @@
+// edition:2021
+// check-pass
+// aux-build: foreign-crate-macro-pat.rs
+//
+// Tests that the edition of the foreign crate is used
+// when determining the behavior of the `:pat` matcher.
+
+extern crate foreign_crate_macro_pat;
+
+fn main() {
+ let _b = foreign_crate_macro_pat::custom_matches!(b'3', b'0' ..= b'9');
+}