blob: 2afcf43f79c018996b6f31f99702cd7c496e40bb [file] [log] [blame]
extension on Object {
int get setter => 42;
void set getter(int value) {}
}
inline class InlineClass {
final int it;
InlineClass(this.it);
test() {}
int operator +(int other) => 42;
int operator -() => 87;
int operator [](int index) => 123;
void operator []=(int index, int value) {}
int get getter => 42;
int method() => 42;
void set setter(int value) {}
T genericMethod<T>(T t) => t;
int call() => 321;
}
test(InlineClass ic) {}