import std.stdio; void main() { struct S { int i = 1; double j = 2.3; } S s; writefln( s.tupleof ); auto t = s.tupleof; writefln( t ); }