blob: 91b386f8a57139099fbd0df4114cceba5e6e7cb6 [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 non-final variable declaration of the form T v;
/// or the form T v = e; always induces an implicit setter function
/// with signature
/// void set v = (T x)
/// whose execution sets the value of v to the incoming argument x.
/// @description Checks that the formal parameter type of this implicit setter
/// is correct and the same as the type of the static variable by attempting to
/// pass a value of incompatible type (String) to it. Compile error is expected.
/// @compile-error
/// @author pagolubev
class A {
static int a = 1;
}
main() {
A.a = "1";
}