Skip to content

Commit ec5ba54

Browse files
Add test for promotability in let
The old const-checker conservatively reset qualifs when `IsNotPromotable` was in the return place. Unfortunately, named variables have `IsNotPromotable`, so this could cause promotion to fail. This should work now.
1 parent a9b1abe commit ec5ba54

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// run-pass
2+
3+
use std::cell::Cell;
4+
5+
const X: Option<Cell<i32>> = None;
6+
7+
const Y: Option<Cell<i32>> = {
8+
let x = None;
9+
x
10+
};
11+
12+
// Ensure that binding the final value of a `const` to a variable does not affect promotion.
13+
#[allow(unused)]
14+
fn main() {
15+
let x: &'static _ = &X;
16+
let y: &'static _ = &Y;
17+
}

0 commit comments

Comments
 (0)