8a92a2a79c
This inference is enabled for both strong and non-strong mode, since it is mandated by the Dart 1.0 spec. R=ahe@google.com, scheglov@google.com Review-Url: https://codereview.chromium.org/2908453002 .
21 lines
373 B
Plaintext
21 lines
373 B
Plaintext
library;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
class A extends core::Object {
|
|
final field core::int x;
|
|
final field core::int y;
|
|
constructor •(core::int y) → void
|
|
;
|
|
method method() → dynamic
|
|
;
|
|
}
|
|
class B extends self::A {
|
|
constructor •(dynamic x) → void
|
|
;
|
|
method method() → dynamic
|
|
;
|
|
}
|
|
static method main() → dynamic
|
|
;
|