blob: 07d48180f5085204d37804241cb69fdae659a84f [file] [log] [blame]
// Copyright (c) 2011, 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 test to catch error reporting bugs in class fields declarations.
// Should be an error because we have setter/getter functions and fields
// in the class.
// @dart = 2.9
class C {
var a;
get a {/*@compile-error=unspecified*/
return 1;
}
set a(int val) {/*@compile-error=unspecified*/
var x = val;
}
get b {
return 2;
}
set b(int val) {
var x = val;
}
}
class Field1Test {
static testMain() {
var c = new C();
}
}
main() {
Field1Test.testMain();
}