blob: 72b467e9f1d1e9aa46d93cd03a61fb694bc02dd6 [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 static const Zone root
* The root zone that is implicitly created.
* @description Checks that property root is of type Zone.
* @author ilya
*/
import "dart:async";
import "../../../Utils/expect.dart";
main() {
Expect.isTrue(Zone.root is Zone);
}