blob: 060aa8c43f15e8a51a8a53037f01d09b45cb0da7 [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.
class C {
void set test(int v) {}
dynamic get test => 3.14;
}
test() {
C c = new C();
c.test = 1;
c.test;
}
main() {}