blob: e99c2affcb626021b6ccd70d3a4a019c71b5725c [file] [log] [blame]
// Copyright (c) 2017, 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.
main() {
assert(true);
assert(true,);
assert(true,"message");
assert(true,"message",);
assert(true,"message",extra); //# 01: syntax error
assert(true,"message",,); //# 02: syntax error
}