blob: b803faa64ec4b39b6c06b1d1fbb726c6de484d49 [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.
int x = 100;
get x => 200; /// 00: compile-time error
set x(var i) { print(i); } /// 01: compile-time error
int x(a, b) { print(a + b); } /// 02: compile-time error
void main() {
// No need to reference x.
}