blob: 810ca7a514dee3e7ff30f0646fe424f6482aaf89 [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.
/*strong.class: Class:*/
/*omit.class: Class:*/
class Class<T> {
/*strong.element: Class.:*/
/*omit.element: Class.:*/
Class();
}
/*strong.element: method1:*/
/*omit.element: method1:*/
method1() {}
/*strong.element: method2:*/
/*omit.element: method2:*/
method2(int i, String s) => i;
/*strong.element: main:*/
/*omit.element: main:*/
main() {
print('${method1.runtimeType}');
method2(0, '');
new Class();
}