// Copyright (c) 1995, Masanao Izumo struct foo { x; y; }; struct bar { a; b; }; s = new bar; t = new foo; u = new bar; writeln(structof(struct foo)); writeln(structof(struct bar)); writeln(structof(s)); writeln(structof(t)); writeln(structof(u));