dart-sdk/tests/language/function_type_call_getter2_test.dart
floitsch@google.com f336830ceb classes with call-methods were not recognized as Functions.
Also fixes similar issue (classes with 'call' getter were recognized as Function).

BUG= http://dartbug.com/16401
R=johnniwinther@google.com

Review URL: https://codereview.chromium.org//147743005

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@32252 260f80e4-7a28-3924-810f-c04153c831b5
2014-02-03 17:45:01 +00:00

50 lines
895 B
Dart

// Copyright (c) 2014, 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 A {
final call = null;
}
class B {
get call => null;
}
class C {
set call(x) {}
}
typedef int F(String str);
main() {
A a = new A();
B b = new B();
C c = new C();
final
Function /// 00: static type warning, dynamic type error
a2 = a;
final
F /// 01: static type warning, dynamic type error
a3 = a;
final
Function /// 02: static type warning, dynamic type error
b2 = b;
final
F /// 03: static type warning, dynamic type error
b3 = b;
final
Function /// 04: static type warning, dynamic type error
c2 = c;
final
F /// 05: static type warning, dynamic type error
c3 = c;
}