blob: 9de43ed3fb4473584ee05e7b3a31cc46ec77134b [file] [log] [blame]
// Copyright (c) 2023, 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 type ET<T>(T _) {
void test() {}
}
main() {
ET(null).test();
ET<int?>(42).test();
}