blob: cb8b8f2203f512707b1107733e95959cca47b833 [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 argument results in Error
* @description Tries to pass null as argument and expects an Error
* @author msyabro
* @reviewer rodionov
* @needsreview undocumented
*/
import "../../../Utils/expect.dart";
main() {
try {
"1111".split(null);
Expect.fail("Error is expected");
} on Error catch(e) {}
}