summaryrefslogtreecommitdiffstats
path: root/tests/ui/coercion/coercion-slice.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/coercion/coercion-slice.rs')
-rw-r--r--tests/ui/coercion/coercion-slice.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/coercion/coercion-slice.rs b/tests/ui/coercion/coercion-slice.rs
index b756c8f82..b99235dd3 100644
--- a/tests/ui/coercion/coercion-slice.rs
+++ b/tests/ui/coercion/coercion-slice.rs
@@ -3,5 +3,5 @@
fn main() {
let _: &[i32] = [0];
//~^ ERROR mismatched types
- //~| expected `&[i32]`, found array `[{integer}; 1]`
+ //~| expected `&[i32]`, found `[{integer}; 1]`
}