blob: a0d93849bdb1a32ddb208e1d2a028beb12d4e8e8 [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.7
import 'package:compiler/src/util/testing.dart';
/*class: Class:*/
class Class<T> {
/*member: Class.:*/
Class();
}
/*member: method1:*/
method1<T>() {}
/*member: method2:*/
method2<T>(t, s) => t;
/*member: main:*/
main() {
makeLive('${method1.runtimeType}');
method2(0, '');
new Class();
}