blob: 29b7d40975cc420901e1a9b81f2eca40ccc16a0b [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail133.d(13): Error: function `D main` circular dependency. Functions cannot be interpreted while being compiled
fail_compilation/fail133.d(15): called from here: `main()`
---
*/
template t(int t)
{
}
int main()
{
return t!(main() + 8);
}