blob: 3c55054177931c6ac8853d6e88c9bb9641e28ca0 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice13221.d(20): Error: variable `r` cannot be read at compile time
---
*/
struct Tuple(T...)
{
T field;
alias field this;
}
template test(T) {}
void main()
{
foreach (r; 0 .. 0)
{
enum i = r;
test!(Tuple!bool[i]);
}
}