blob: f8d97c4b1eabb95dd7f7b7760a27826488d7928e [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.
}