blob: 34b69e864c707c383de84d85a8872e76d321b0f6 [file] [log] [blame]
// @dart = 2.9
extension Extension on int {
syncStarMethod() sync* {}
asyncMethod() async {}
asyncStarMethod() async* {}
}
main() {}