]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/error-codes/E0446.stderr
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / error-codes / E0446.stderr
index 8f381320cf99e120e681078c8382991a36755328..9c7399515f43930c9ac74ea91303cab96e34178d 100644 (file)
@@ -1,8 +1,8 @@
-error[E0446]: private type `Foo::Bar` in public interface
+error[E0446]: private type `foo::Bar` in public interface
   --> $DIR/E0446.rs:4:5
    |
 LL |       struct Bar(u32);
-   |       - `Foo::Bar` declared as private
+   |       - `foo::Bar` declared as private
 LL | 
 LL | /     pub fn bar() -> Bar { //~ ERROR E0446
 LL | |         Bar(0)