mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
17 lines
290 B
D
17 lines
290 B
D
// https://issues.dlang.org/show_bug.cgi?id=24107
|
|
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
This should not output an error message: false
|
|
---
|
|
*/
|
|
|
|
bool recurse ()
|
|
{
|
|
return recurse();
|
|
}
|
|
|
|
pragma(msg,
|
|
"This should not output an error message: ",
|
|
__traits(compiles, {enum bool r = recurse();}));
|