blob: d83a1193b70a6f38b4b6044d12797feed90be65c [file] [log] [blame]
// Copyright (c) 2025, 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.
class InvalidClassTypeParameterCount1 {}
class InvalidClassTypeParameterCount2<T> {}
class InvalidClassTypeParameterCount3<T, S> {}
extension InvalidExtensionTypeParameterCount1 on int {}
extension InvalidExtensionTypeParameterCount2<T> on int {}
extension InvalidExtensionTypeParameterCount3<T, S> on int {}