blob: 019b00b6ba76305bb7b8546f57e809d88f2444b9 [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.
*/
/**
* @description Regression test for the Issue 34741: Analyzer doesn't allow
* function to use type parameter [<Instance of 'TypeParameterMember'>] as a
* type argument whereas dart does allow this.
* @author iarkh@unipro.ru
*/
Type typeOf<X>() => X;
typedef G = Function<X extends num>();
typedef G1<X> = Function();
main() {
typeOf<G>(); //# 01: compile-time error
typeOf<G1>();
}