blob: eb77cbc2e3807ed719a67f1998b10a9baa4024b8 [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.
class Super {
/*Super.field:Union of [[exact=JSUInt31], [exact=Sub]]*/
var field = 42;
}
class Sub extends Super {
/*Sub.method:[subclass=Closure]*/
method() {
// ignore: INVALID_ASSIGNMENT
var a = super.field = new Sub();
return a. /*[exact=Sub]*/ method;
}
}
/*main:[null]*/
main() {
new Sub(). /*[exact=Sub]*/ method();
}