We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b56acac commit 2428054Copy full SHA for 2428054
tests/ui/const-generics/late-bound-vars/in_closure.rs
@@ -1,4 +1,4 @@
1
-// failure-status: 101
+// failure-status: 1
2
// known-bug: unknown
3
// error-pattern:internal compiler error
4
// normalize-stderr-test "internal compiler error.*" -> ""
@@ -22,7 +22,10 @@
22
#![feature(generic_const_exprs)]
23
#![allow(incomplete_features)]
24
25
-const fn inner<'a>() -> usize where &'a (): Sized {
+const fn inner<'a>() -> usize
26
+where
27
+ &'a (): Sized,
28
+{
29
30
}
31
0 commit comments