blob: 98e31f4c3241ef8993b0e7c736ee6080750deb63 [file] [log] [blame]
import std.typecons : tuple;
enum foo = tuple(1, 2).expand;
static assert(typeof(foo).stringof == "(int, int)");
static assert(foo.stringof == "tuple(1, 2)");