about summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0599.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/error-codes/E0599.stderr')
-rw-r--r--src/test/ui/error-codes/E0599.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/error-codes/E0599.stderr b/src/test/ui/error-codes/E0599.stderr
index ff9ac3cefc0..a9bb3e50295 100644
--- a/src/test/ui/error-codes/E0599.stderr
+++ b/src/test/ui/error-codes/E0599.stderr
@@ -1,10 +1,10 @@
 error[E0599]: no associated item named `NotEvenReal` found for type `Foo` in the current scope
   --> $DIR/E0599.rs:14:15
    |
-11 | struct Foo;
+LL | struct Foo;
    | ----------- associated item `NotEvenReal` not found for this
 ...
-14 |     || if let Foo::NotEvenReal() = Foo {}; //~ ERROR E0599
+LL |     || if let Foo::NotEvenReal() = Foo {}; //~ ERROR E0599
    |               ^^^^^^^^^^^^^^^^^^ associated item not found in `Foo`
 
 error: aborting due to previous error