mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
20 lines
255 B
D
20 lines
255 B
D
module bug77;
|
|
import tango.stdc.string;
|
|
void main()
|
|
{
|
|
size_t len;
|
|
void func2()
|
|
{
|
|
char* prefix = "";
|
|
|
|
void func()
|
|
{
|
|
len = strlen(prefix);
|
|
assert(len == 0);
|
|
}
|
|
|
|
func();
|
|
}
|
|
func2();
|
|
}
|