dmd/compiler/test/compilable/test21282.d
Nick Treleaven bb638373d6
Fix Issue 15436 - Compiler still refers to AliasSeq-s as "tuple"-s (#15363)
* Fix Issue 15436 - Compiler still refers to AliasSeq-s as "tuple"-s

Replace "tuple type" with "type sequence".
Replace "tuple" with "sequence".
Pretty print `AliasSeq!(args)`, not `tuple(args)`.
Leave json as "tuple" for now.
Also mention std.typecons.Tuple when trying to return a sequence.

Note: This does not rename any internal compiler symbols.

* Update runnable tests

* Update stringof tests

* Update remaining tests

* retrigger tests
2023-06-30 11:02:00 +03:00

15 lines
229 B
D

/*
TEST_OUTPUT:
---
AliasSeq!(func)
---
*/
// https://issues.dlang.org/show_bug.cgi?id=21282
template I(T...) { alias I = T; }
template Bug(T...) {
alias Bug = mixin("I!(T[0])");
}
void func() {}
pragma(msg, Bug!func);