blob: 091258b0cd7aabe971b4805b6b1c20b2df1c761c [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.
import 'package:expect/expect.dart';
// This class is inlined away.
/*class: Class:*/
class Class<T> {
const Class();
Type get type => T;
}
/*class: A:checks=[],typeArgument*/
class A {}
@pragma('dart2js:noInline')
test(o) => Expect.notEquals('dynamic', '$o');
main() {
test(const Class<A>().type);
}