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
|
||||
typeCode!int().assertEqual(cast(int)('i'));
|
||||
typeCode!bool().assertEqual(cast(int)('b'));
|
||||
typeCode!(Tuple!(int, string))().assertEqual(cast(int)('r'));
|
||||
// ctfe-capable
|
||||
static string sig = typeSig!ulong();
|
||||
sig.assertEqual("t");
|
||||
|
|
Loading…
Reference in a new issue