Files
sdk/pkg/front_end/testcases/bug34511.dart
T
Dmitry Stefantsov 57ecf81f91 [fasta] Handle function types in arguments of mixin applications
Fixes #34511

Bug: http://dartbug.com/34511
Change-Id: I88da959b329199fc879f4db6e282829d21f6670a
Reviewed-on: https://dart-review.googlesource.com/c/82987
Commit-Queue: Dmitry Stefantsov <dmitryas@google.com>
Reviewed-by: Peter von der Ahé <ahe@google.com>
Auto-Submit: Dmitry Stefantsov <dmitryas@google.com>
2018-11-27 12:26:32 +00:00

12 lines
339 B
Dart

// Copyright (c) 2018, 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.
// See http://dartbug.com/34511 for details.
class A<X> {}
class B<Z> extends Object with A<Z Function()> {}
main() {}