Skip to content

Commit 8a34fea

Browse files
authored
Rollup merge of #117516 - matthiaskrgr:test_effects_113375_oob, r=fee1-dead
add test for #113375 Fixes #113375 r? `@fee1-dead`
2 parents 1683df7 + 666cad9 commit 8a34fea

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// check-pass
2+
3+
// effects ice https://github.com/rust-lang/rust/issues/113375 index out of bounds
4+
5+
#![allow(incomplete_features, unused)]
6+
#![feature(effects, adt_const_params)]
7+
8+
struct Bar<T>(T);
9+
10+
impl<T> Bar<T> {
11+
const fn value() -> usize {
12+
42
13+
}
14+
}
15+
16+
struct Foo<const N: [u8; Bar::<u32>::value()]>;
17+
18+
pub fn main() {}

0 commit comments

Comments
 (0)