Add check for correct typecode for tuple to unittest
This commit is contained in:
parent
7b826ec80c
commit
227d0085ca
|
@ -171,6 +171,7 @@ unittest {
|
||||||
// type codes
|
// type codes
|
||||||
typeCode!int().assertEqual(cast(int)('i'));
|
typeCode!int().assertEqual(cast(int)('i'));
|
||||||
typeCode!bool().assertEqual(cast(int)('b'));
|
typeCode!bool().assertEqual(cast(int)('b'));
|
||||||
|
typeCode!(Tuple!(int, string))().assertEqual(cast(int)('r'));
|
||||||
// ctfe-capable
|
// ctfe-capable
|
||||||
static string sig = typeSig!ulong();
|
static string sig = typeSig!ulong();
|
||||||
sig.assertEqual("t");
|
sig.assertEqual("t");
|
||||||
|
|
Loading…
Reference in a new issue