blob: 7850faac7f7cac850d8496b940f7b393fc5c0cd2 [file] [log] [blame]
// Copyright (c) 2017, 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.
/*element: Super.:[exact=Super]*/
class Super {
/*element: Super.field:[exact=JSUInt31]*/
var field = 42;
}
/*element: Sub.:[exact=Sub]*/
class Sub extends Super {
/*element: Sub.method:[exact=JSUInt31]*/
method() => super.field;
}
/*element: main:[null]*/
main() {
new Sub(). /*invoke: [exact=Sub]*/ method();
}