blob: b0d6f9c33c9b56b3783c9e8cc5d5c752ae6a7083 [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.
/**
* @assertion int exitCode
* Default value is [0].
* @description Checks that default exit code is [0].
* @author iarkh@unipro.ru
*/
import "../../../Utils/expect.dart";
import "dart:io";
main(List<String> args) {
Expect.equals(0, exitCode);
}