blob: 4eba37358254793bcb7a20bf02462b3772c61614 [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.9
extension Extension on int {
int get instanceProperty => 42;
void set instanceProperty(int value) {}
void instanceMethod() {}
static int staticField = 42;
static final int staticFinalField = 42;
static const int staticConstField = 42;
static int get staticProperty => 42;
static void set staticProperty(int value) {}
static void staticMethod() {}
}