blob: 9764b6f2a06f582994437b8080f03db6ae619550 [file] [log] [blame]
// Copyright (c) 2021, 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.
import 'package:expect/expect.dart';
class C<X> {
C(Type t) {
Expect.equals(t, X);
}
}
typedef T<X> = C<X>;