DCD/tests/tc_templates_resolve/file3.d

11 lines
137 B
D

struct HashMap(Key, Value)
{
Key value_key;
Value value_value;
}
void main()
{
auto hmap = HashMap!(int, int)();
hmap.
}