57ecf81f91
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>
12 lines
339 B
Dart
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() {}
|