blob: bbfed59a53c0784d5067b6cfee8dac2ab1cac5f8 [file] [log] [blame]
// TODO(multitest): This was automatically migrated from a multitest and may
// contain strange or dead code.
// Copyright (c) 2012, 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 Bad {
int foo = 0;
final int bar = -1;
static const int toto = -3;
}
void use(x) {}
main() {
use(new Bad().bar);
use(Bad.toto);
}