blob: 7b28ce9c39b05519519a3a49c26509b3933d5ab7 [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
*/
import "../../../Utils/expect.dart";
main() {
Expect.throws(() {"1111".split(null);}, (e) => e is Error);
}