blob: aa6042b737beee35011712a25f3988ed9dbc9165 [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 null list elements result in an ArgumentError
* @description Tries to pass a list with null values
* @author msyabro
* @reviewer rodionov
* @needsreview undocumented
*/
import "../../../Utils/expect.dart";
void check(List list) {
try {
String str = new String.fromCharCodes(list);
Expect.fail("ArgumentError is expected");
} on ArgumentError catch(e) {}
}
main() {
check([null]);
check([0, 1, 2, 3, null]);
check([null, null]);
}