blob: 3f84eadb35ae3ab67a3ff991330bf4e6bcfd9fb3 [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.
*/
/**
* @assertion A formal constructor parameter is either a formal parameter (6.2)
* or an initializing formal. An initializing formal has the form this.id,
* where id is the name of an instance variable of the immediately enclosing class.
* It is a compile-time error if id is not the name of an instance variable of the immediately enclosing class.
* @description Checks that it is a compile-time error if id is the name
* of an instance method of the immediately enclosing class.
* @compile-error
* @author msyabro
* @reviewer iefremov
*/
class C {
C(this.f) {}
void f() {}
}
main() {
try {
new C(null);
} catch (v) {}
}