blob: d427ec52b2deab978c97ae3e67ded1586d31ce4e [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 compile error
* @description Check that it is a compile error to pass null argument
* @author msyabro
*/
main() {
"1111".split(null);
// ^^^^
// [analyzer] unspecified
// [cfe] unspecified
}