blob: 43cea9be4f5fa1d5078efa9a0258293010192a2a [file] [log] [blame]
// Copyright (c) 2013, 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.
import "package:expect/expect.dart";
class C {
void a() {}
}
void main() {
C().a(); //# 01: compile-time error
}