about summary refs log tree commit diff
path: root/tests/ui/auxiliary
diff options
context:
space:
mode:
authorKivooeo <Kivooeo123@gmail.com>2025-07-01 00:41:51 +0500
committerKivooeo <Kivooeo123@gmail.com>2025-07-05 00:39:50 +0500
commit9ad98f78d4485f6f7f9615c1961bb75b281bfceb (patch)
treedaadbde2637ad72e2b6a55e61b2870110c55c16e /tests/ui/auxiliary
parent5ca574e85b67cec0a6fc3fddfe398cbe676c9c69 (diff)
downloadrust-9ad98f78d4485f6f7f9615c1961bb75b281bfceb.tar.gz
rust-9ad98f78d4485f6f7f9615c1961bb75b281bfceb.zip
moved tests
Diffstat (limited to 'tests/ui/auxiliary')
-rw-r--r--tests/ui/auxiliary/delegate_macro.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/ui/auxiliary/delegate_macro.rs b/tests/ui/auxiliary/delegate_macro.rs
deleted file mode 100644
index 0d752e12039..00000000000
--- a/tests/ui/auxiliary/delegate_macro.rs
+++ /dev/null
@@ -1,6 +0,0 @@
-#[macro_export]
-macro_rules! delegate {
-    ($method:ident) => {
-        <Self>::$method(8)
-    };
-}