blob: e4a1cd4b924d7362a01f2329a18e4b01205cccf9 [file] [log] [blame]
// Copyright 2025 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
use fuchsia_async as fasync;
#[fasync::run(2)]
async fn main() {
let _task_a = fasync::Task::spawn(async {});
let _task_b = fasync::Task::spawn(async {});
fasync::Timer::new(std::time::Duration::from_secs(1)).await;
let scope = fasync::Scope::new_with_name("scope");
let _scope_task = scope.spawn(foo(8));
let child_scope = scope.new_child_with_name("child");
let _child_task = child_scope.spawn(foo(21));
panic!();
}
async fn foo(i: u64) {
fasync::Timer::new(std::time::Duration::from_secs(i)).await;
}