about summary refs log tree commit diff
path: root/tests/ui/const-generics/std/const-generics-range.min.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/std/const-generics-range.min.stderr')
-rw-r--r--tests/ui/const-generics/std/const-generics-range.min.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/const-generics/std/const-generics-range.min.stderr b/tests/ui/const-generics/std/const-generics-range.min.stderr
index 04e3fe74453..43a57c880d5 100644
--- a/tests/ui/const-generics/std/const-generics-range.min.stderr
+++ b/tests/ui/const-generics/std/const-generics-range.min.stderr
@@ -58,7 +58,7 @@ help: add `#![feature(adt_const_params)]` to the crate attributes to enable more
 LL + #![feature(adt_const_params)]
    |
 
-error: `RangeToInclusive<usize>` is forbidden as the type of a const generic parameter
+error: `std::ops::RangeToInclusive<usize>` is forbidden as the type of a const generic parameter
   --> $DIR/const-generics-range.rs:34:35
    |
 LL | struct _RangeToInclusive<const R: std::ops::RangeToInclusive<usize>>;