blob: a39960667aa3425b7cfc40035d49fdb97823cafe [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 argument results in compile error
/// @description Check that it is a compile error if argument is null
/// @author msyabro
main() {
"".endsWith(null);
// ^^^^
// [analyzer] unspecified
// [cfe] unspecified
}