dart-sdk/tests/language/regress/regress45529_test.dart
Mayank Patke bd06128def [web-fixit] Make regress45529_test minification-agnostic
Change-Id: I93eaaf56fefa02e7f630b5711d9781cd651b1dad
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/339783
Auto-Submit: Mayank Patke <fishythefish@google.com>
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Bob Nystrom <rnystrom@google.com>
2023-12-06 22:49:49 +00:00

25 lines
513 B
Dart

// Copyright (c) 2021, 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";
void main() {
final baz = Foo<Null>().baz;
Expect.equals(Baz<Bar<Null>?>, baz.runtimeType);
baz.v = baz.v;
}
class Bar<T> {}
class Foo<T> extends Quux<Bar<T>> {}
class Baz<T> {
Baz(this.v);
T v;
}
class Quux<T> {
final baz = Baz<T?>(null);
}