about summary refs log tree commit diff
path: root/tests/ui/namespace
diff options
context:
space:
mode:
authorWaffle Lapkin <waffle.lapkin@gmail.com>2025-04-27 18:11:09 +0200
committerWaffle Lapkin <waffle.lapkin@gmail.com>2025-04-27 18:14:55 +0200
commit8f765fc7a15b6a2f1de93251b9f65c6156fbfe33 (patch)
treee6778c21e564543a975574c5ff6ea8d4fac40331 /tests/ui/namespace
parentbce7fe1818111ed9124412369ff1b36ffe5fdbe1 (diff)
downloadrust-8f765fc7a15b6a2f1de93251b9f65c6156fbfe33.tar.gz
rust-8f765fc7a15b6a2f1de93251b9f65c6156fbfe33.zip
bless tests
Diffstat (limited to 'tests/ui/namespace')
-rw-r--r--tests/ui/namespace/namespace-mix.stderr4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/ui/namespace/namespace-mix.stderr b/tests/ui/namespace/namespace-mix.stderr
index 412ea4aba30..200d31cc710 100644
--- a/tests/ui/namespace/namespace-mix.stderr
+++ b/tests/ui/namespace/namespace-mix.stderr
@@ -7,7 +7,6 @@ LL |     pub struct TS();
 LL |     check(m1::S);
    |           ^^^^^
    |
-   = note: can't use a type alias as a constructor
 help: a tuple struct with a similar name exists
    |
 LL |     check(m1::TS);
@@ -35,7 +34,6 @@ LL |     check(xm1::S);
 LL |     pub struct TS();
    |     ------------- similarly named tuple struct `TS` defined here
    |
-   = note: can't use a type alias as a constructor
 help: a tuple struct with a similar name exists
    |
 LL |     check(xm1::TS);
@@ -61,7 +59,6 @@ LL |         TV(),
 LL |     check(m7::V);
    |           ^^^^^
    |
-   = note: can't use a type alias as a constructor
 help: a tuple variant with a similar name exists
    |
 LL |     check(m7::TV);
@@ -89,7 +86,6 @@ LL |     check(xm7::V);
 LL |         TV(),
    |         -- similarly named tuple variant `TV` defined here
    |
-   = note: can't use a type alias as a constructor
 help: a tuple variant with a similar name exists
    |
 LL |     check(xm7::TV);