blob: e3341c87ab24674ef0f58e58585242d05b4b6210 [file] [log] [blame]
/*
* Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
class S1 {
Object a;
Object b;
S1(this.a, this.b);
}
class S2 {
Object a;
Object b;
S2(this.a, this.b);
}
List<Object> table=[
new S1(1234, "1234"),
new S1(null, []),
new S1(1.234, {}),
new S2("1.234", {}),
new S2("key2", [null, 1.0])
];