mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
201 B
D
14 lines
201 B
D
// EXTRA_SOURCES: imports/a15333.d
|
|
|
|
module ice15333;
|
|
|
|
void map(alias fun)() {}
|
|
|
|
struct IdentifierResolver(alias handler)
|
|
{
|
|
void resolve()
|
|
{
|
|
map!((a) {});
|
|
handler(true);
|
|
}
|
|
}
|