4f586e265e
Change-Id: I85aba2501a7b8a911e122f0a802dfc21b7e87e1e Reviewed-on: https://dart-review.googlesource.com/51620 Reviewed-by: Peter von der Ahé <ahe@google.com> Commit-Queue: Dmitry Stefantsov <dmitryas@google.com>
14 lines
294 B
Plaintext
14 lines
294 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 •() → void
|
|
: super core::Object::•()
|
|
;
|
|
method f() → void {
|
|
dynamic x = this;
|
|
}
|
|
}
|
|
static method main() → dynamic {}
|