From cf2dff2b1e3fa55fa5415d524200070d0d7aacfe Mon Sep 17 00:00:00 2001 From: Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> Date: Thu, 5 Jan 2023 09:13:28 +0100 Subject: Move /src/test to /tests --- .../ui/macros/macro-backtrace-invalid-internals.rs | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 tests/ui/macros/macro-backtrace-invalid-internals.rs (limited to 'tests/ui/macros/macro-backtrace-invalid-internals.rs') diff --git a/tests/ui/macros/macro-backtrace-invalid-internals.rs b/tests/ui/macros/macro-backtrace-invalid-internals.rs new file mode 100644 index 00000000000..9501e7cd07c --- /dev/null +++ b/tests/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!(); +} -- cgit 1.4.1-3-g733a5