blob: d51e0d089bae26a03257c1fd0c3367731de77e38 [file] [log] [blame]
// Copyright (c) 2017, 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.6
main() {
var x = void f<T>(T t) {};
print(x.runtimeType);
print(void g<T>(T t) {});
}