blob: 41743cf173293f9a2c3e6e29bc118a72e9d257a4 [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 compile error
* @description Check that char code cannot be null
* @author msyabro
*/
main() {
new String.fromCharCodes([0, 1, 2, 3, null]);
// ^^^^
// [analyzer] unspecified
// [cfe] unspecified
}