573a7c543f
Change-Id: Id02e72dac031224c1c37cdde5a20fb19c0ebf6b5 Reviewed-on: https://dart-review.googlesource.com/c/84404 Auto-Submit: Peter von der Ahé <ahe@google.com> Commit-Queue: Jens Johansen <jensj@google.com> Reviewed-by: Jens Johansen <jensj@google.com>
14 lines
309 B
Plaintext
14 lines
309 B
Plaintext
library test;
|
|
import self as self;
|
|
import "dart:core" as core;
|
|
|
|
class C<T extends core::Object = dynamic> extends core::Object {
|
|
synthetic constructor •() → self::C<self::C::T>
|
|
: super core::Object::•()
|
|
;
|
|
method f() → void {
|
|
dynamic x = this;
|
|
}
|
|
}
|
|
static method main() → dynamic {}
|