blob: cb224e31818927a22a9a9012a67922656085a362 [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
*/
import "../../Utils/dynamic_check.dart";
class A {
static int a = 1;
}
main() {
A.a = "1";
}