dart-sdk/tests/language/function_type_alias8_test.dart
regis@google.com f50189a001 Fix issue 9442.
Add regression test.
Review URL: https://codereview.chromium.org//13046009

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@20545 260f80e4-7a28-3924-810f-c04153c831b5
2013-03-26 21:26:03 +00:00

21 lines
519 B
Dart

// Copyright (c) 2013, 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.
// Regression test for issue 9442.
typedef dynamic GetFromThing<T extends Thing>(T target);
typedef GetFromThing<T> DefGetFromThing<T extends Thing>(dynamic def);
class Thing { }
class Test {
static final DefGetFromThing<Thing> fromThing = (dynamic def) { };
}
main() {
Test.fromThing(10);
}