blob: 3b888e15e3c67f4c9876b54e55dadc0d2a4dd95b [file] [log] [blame] [edit]
// Copyright (c) 2020, 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.
/// @assertion With sound null safety, all generic const constructors and
/// generic const literals are evaluated using the actual type arguments
/// provided, whether legacy or non-legacy. This ensures that with sound null
/// safety, the final consistent semantics are obeyed.
///
/// @description Checks dynamically that actual generic class type parameter is
/// evaluated correctly for [int] type argument.
/// @author iarkh@unipro.ru
import "../../Utils/expect.dart";
class A<T> {
const A();
void testme() { Expect.equals(int, T); }
}
main() {
const a = A<int>();
a.testme();
}