Skip to content

Commit 666cad9

Browse files
committed
add test for #113375
Fixes #113375
1 parent b800c30 commit 666cad9

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)