blob: 29253c45a223e216425c2c0e92804126cc302999 [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.
*/
/**
* @assertion Passing null as either argument results in ArgumentError
* @description Tries to pass null as either argument and expects an ArgumentError
* @author msyabro
* @reviewer rodionov
* @needsreview undocumented
*/
import "../../../Utils/expect.dart";
main() {
check("a", null);
check(null, "");
check(null, null);
}
void check(Pattern from, String to) {
try {
"aaa".replaceAll(from, to);
Expect.fail("ArgumentError is expected");
} on ArgumentError catch(e) {}
}