blob: a7cc0d047c94491ceba13875c1564f421ae62a2e [file] [log] [blame]
// 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.
// @dart=2.6
// See http://dartbug.com/34511 for details.
class A<X> {}
class B<Z> extends Object with A<Z Function()> {}
main() {}