summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/macro-backtrace-invalid-internals.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/macros/macro-backtrace-invalid-internals.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/macros/macro-backtrace-invalid-internals.rs')
-rw-r--r--src/test/ui/macros/macro-backtrace-invalid-internals.rs61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/test/ui/macros/macro-backtrace-invalid-internals.rs b/src/test/ui/macros/macro-backtrace-invalid-internals.rs
new file mode 100644
index 000000000..9501e7cd0
--- /dev/null
+++ b/src/test/ui/macros/macro-backtrace-invalid-internals.rs
@@ -0,0 +1,61 @@
+// Macros in statement vs expression position handle backtraces differently.
+
+macro_rules! fake_method_stmt {
+ () => {
+ 1.fake() //~ ERROR no method
+ }
+}
+
+macro_rules! fake_field_stmt {
+ () => {
+ 1.fake //~ ERROR doesn't have fields
+ }
+}
+
+macro_rules! fake_anon_field_stmt {
+ () => {
+ (1).0 //~ ERROR doesn't have fields
+ }
+}
+
+macro_rules! fake_method_expr {
+ () => {
+ 1.fake() //~ ERROR no method
+ }
+}
+
+macro_rules! fake_field_expr {
+ () => {
+ 1.fake //~ ERROR doesn't have fields
+ }
+}
+
+macro_rules! fake_anon_field_expr {
+ () => {
+ (1).0 //~ ERROR doesn't have fields
+ }
+}
+
+macro_rules! real_method_stmt {
+ () => {
+ 2.0.neg() //~ ERROR can't call method `neg` on ambiguous numeric type `{float}`
+ }
+}
+
+macro_rules! real_method_expr {
+ () => {
+ 2.0.neg() //~ ERROR can't call method `neg` on ambiguous numeric type `{float}`
+ }
+}
+
+fn main() {
+ fake_method_stmt!();
+ fake_field_stmt!();
+ fake_anon_field_stmt!();
+ real_method_stmt!();
+
+ let _ = fake_method_expr!();
+ let _ = fake_field_expr!();
+ let _ = fake_anon_field_expr!();
+ let _ = real_method_expr!();
+}