blob: 267e840fa62d1c25e8d8e4e43079cd246731a082 [file] [log] [blame]
// Copyright (c) 2022, 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.
import augment 'augment_super_lib.dart';
void topLevelMethod() {}
void topLevelMethodErrors() {}
List<int> get topLevelProperty => [42];
void set topLevelProperty(List<int> value) {}
List<int>? get nullableTopLevelProperty => [42];
void set nullableTopLevelProperty(List<int>? value) {}
class Class {
void instanceMethod() {}
void instanceMethodErrors() {}
int get instanceProperty => 42;
void set instanceProperty(int value) {}
int? get nullableInstanceProperty => 42;
void set nullableInstanceProperty(int? value) {}
}
main() {}