blob: fa6db4d50a1141a63a42af8d2b4d5d59b936a92c [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.
/*class: Class:*/
class Class<T> {
/*member: Class.:*/
Class();
}
/*member: method1:*/
method1<T>() {}
/*member: method2:*/
method2<T>(t, s) => t;
/*member: main:*/
main() {
print('${method1.runtimeType}');
method2(0, '');
new Class();
}