blob: f3bfb0ee5619c984775ec70a6f052a1540915590 [file] [log] [blame]
// Copyright (c) 2011, 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.9
/// @assertion Passing null argument results in Error
/// @description Tries to pass null as [other] and expects an Error
/// @author msyabro
import "../../../Utils/expect.dart";
main() {
Expect.throws(() {"s".startsWith(null);}, (e) => e is Error);
}