mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 21:51:03 +03:00
22 lines
362 B
D
22 lines
362 B
D
/*
|
|
REQUIRED_ARGS: -unittest
|
|
TEST_OUTPUT:
|
|
---
|
|
tuple(__unittest_L14_C5_1, __unittest_L14_C5_2)
|
|
tuple(__unittest_L14_C5_2)
|
|
---
|
|
*/
|
|
// https://issues.dlang.org/show_bug.cgi?id=21330
|
|
|
|
module test21330;
|
|
|
|
mixin template Test() {
|
|
unittest {
|
|
}
|
|
}
|
|
|
|
mixin Test;
|
|
mixin Test tm;
|
|
|
|
pragma(msg, __traits(getUnitTests, test21330));
|
|
pragma(msg, __traits(getUnitTests, tm));
|