mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
305 B
D
12 lines
305 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail7178.d(10): Error: undefined identifier `contents` in module `fail7178`
|
|
fail_compilation/fail7178.d(12): Error: mixin `fail7178.populate!int` error instantiating
|
|
---
|
|
*/
|
|
template populate(overloads...)
|
|
{
|
|
mixin populate!(.contents);
|
|
}
|
|
public mixin populate!int;
|