summary refs log tree commit diff
path: root/src/test/run-pass/task-comm-1.rs
blob: 3418569412d00eaea5b9adec66769c5c8d0f5a65 (plain)
1
2
3
4
5
6
7
8
fn main() { test00(); }

fn start() { debug!("Started / Finished task."); }

fn test00() {
    task::try(|| start() );
    debug!("Completing.");
}