summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/early/const-param-from-outer-fn.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/early/const-param-from-outer-fn.rs')
-rw-r--r--tests/ui/const-generics/early/const-param-from-outer-fn.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/const-generics/early/const-param-from-outer-fn.rs b/tests/ui/const-generics/early/const-param-from-outer-fn.rs
index c3b418ee3..ee57f3c4f 100644
--- a/tests/ui/const-generics/early/const-param-from-outer-fn.rs
+++ b/tests/ui/const-generics/early/const-param-from-outer-fn.rs
@@ -1,6 +1,6 @@
fn foo<const X: u32>() {
fn bar() -> u32 {
- X //~ ERROR can't use generic parameters from outer function
+ X //~ ERROR can't use generic parameters from outer item
}
}