Field has no type annotation, it is not a static warning.

Review URL: https://chromiumcodereview.appspot.com//10917018

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@11650 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ngeoffray@google.com
2012-08-30 20:18:56 +00:00
parent 386e4848cb
commit d2bfc464ab
+1 -1
View File
@@ -6,7 +6,7 @@ class A {
A a;
bar(c) {
c.a = 2; /// 01: static type warning, dynamic type error
c.a = 2; /// 01: dynamic type error
}
}