about summary refs log tree commit diff
path: root/src/test/ui/macros
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2018-02-25 02:01:39 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2018-02-26 20:24:42 +0300
commit7ba5fd168a20cbead2afb800e638159e11bb79da (patch)
tree285649d5d4c3e8366d319df727c7b858db69db50 /src/test/ui/macros
parent99b1054d9f4442fd5cc535d5ad90f3542791a547 (diff)
downloadrust-7ba5fd168a20cbead2afb800e638159e11bb79da.tar.gz
rust-7ba5fd168a20cbead2afb800e638159e11bb79da.zip
Update UI tests
Diffstat (limited to 'src/test/ui/macros')
-rw-r--r--src/test/ui/macros/macro-backtrace-invalid-internals.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/macros/macro-backtrace-invalid-internals.stderr b/src/test/ui/macros/macro-backtrace-invalid-internals.stderr
index c566430cbf0..58fc3c3a65b 100644
--- a/src/test/ui/macros/macro-backtrace-invalid-internals.stderr
+++ b/src/test/ui/macros/macro-backtrace-invalid-internals.stderr
@@ -35,7 +35,7 @@ LL |     real_method_stmt!();
    |     -------------------- in this macro invocation
 help: you must specify a concrete type for this numeric value, like `f32`
    |
-51 |           2.0_f32.powi(2) //~ ERROR can't call method `powi` on ambiguous numeric type `{float}`
+LL |           2.0_f32.powi(2) //~ ERROR can't call method `powi` on ambiguous numeric type `{float}`
    |           ^^^^^^^
 
 error[E0599]: no method named `fake` found for type `{integer}` in the current scope
@@ -75,7 +75,7 @@ LL |     let _ = real_method_expr!();
    |             ------------------- in this macro invocation
 help: you must specify a concrete type for this numeric value, like `f32`
    |
-57 |           2.0_f32.powi(2) //~ ERROR can't call method `powi` on ambiguous numeric type `{float}`
+LL |           2.0_f32.powi(2) //~ ERROR can't call method `powi` on ambiguous numeric type `{float}`
    |           ^^^^^^^
 
 error: aborting due to 8 previous errors