blob: 0f1730cdda1616ab43dab5be0d6eeda7ae4cdbf4 [file] [log] [blame]
/*
* Copyright (c) 2019, 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 It is an error to call an expression whose type is potentially
* nullable and not dynamic.
*
* @description Check that it is a compile-time error to call an expression
* whose type is potentially nullable and not dynamic. Test extension call
* method
* @author sgrekhov@unipro.ru
*/
// SharedOptions=--enable-experiment=non-nullable,extension-methods
// Requirements=nnbd-strong
extension on int {
int call(int v) => this + v;
}
main() {
int? i = 42;
i(1);
//^^
// [analyzer] unspecified
// [cfe] unspecified
}