mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
241 B
OpenEdge ABL
12 lines
241 B
OpenEdge ABL
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test23715.i(11): Error: `_Thread_local` in block scope must be accompanied with `static` or `extern`
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=23715
|
|
|
|
void test2()
|
|
{
|
|
_Thread_local int tli;
|
|
}
|