mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00

* 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
14 lines
264 B
D
14 lines
264 B
D
// REQUIRED_ARGS: -o- -unittest
|
|
// EXTRA_FILES: imports/a14424.d
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice14424.d(13): Error: `AliasSeq!(__unittest_L3_C1)` has no effect
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
import imports.a14424;
|
|
__traits(getUnitTests, imports.a14424);
|
|
}
|