dart-sdk/tests/web_2/41449d_test.dart
Mayank Patke b615f08e58 [dart2js] Add failing tests for issue #41449.
Bug: https://github.com/dart-lang/sdk/issues/41449
Change-Id: I5526d3f6d15945bdf2ba0f790e1c803471b139c6
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/183120
Reviewed-by: Stephen Adams <sra@google.com>
2021-02-08 23:23:34 +00:00

24 lines
473 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.
// @dart = 2.7
import 'package:expect/expect.dart';
class Foo {
Bar get bar => const Bar();
}
class Bar {
const Bar();
int call<S>(void Function(S) f) => 42;
}
class NoticeMe {}
void main() {
Expect.equals(42, Foo().bar<NoticeMe>((_) {}));
}