We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 75412ce + e8c831a commit ae106cfCopy full SHA for ae106cf
tests/ui/inline-const/elided-lifetime-being-infer-vars.rs
@@ -0,0 +1,11 @@
1
+// check-pass
2
+
3
+#![feature(inline_const)]
4
5
+fn main() {
6
+ let _my_usize = const {
7
+ let a = 10_usize;
8
+ let b: &'_ usize = &a;
9
+ *b
10
+ };
11
+}
0 commit comments