blob: 441c2d04d2163e85a26e746f7289154e6b151e99 [file] [log] [blame]
library test;
import self as self;
import "dart:core" as core;
class C extends core::Object {
synthetic constructor •() self::C*
: super core::Object::•()
;
operator [](core::int* index) core::bool*
return true;
}
static method main() dynamic {
self::C* c = new self::C::•();
dynamic x = c.[](0);
}