blob: 8f4197900dea810510ef2b70d772b53280d41b43 [file] [log] [blame]
// 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.
extension E<U> on String {
U field1 = null;
int field2 = () { U x = null; return null; }();
List<U> field3 = null;
U Function(U) field4 = null;
List<U> Function(List<U>) field5 = null;
int field6 = <E>() { E x = null; return null; }<String>();
int field7 = <E>() { E x = null; return null; }<U>();
}
main() {}