Sign in
android
/
platform
/
external
/
rust
/
crates
/
debug_tree
/
refs/heads/android15-prebuilt-test
/
.
/
examples
/
nested.rs
blob: 5315be5d1fe27ff9abc4de298c969b5fba52a368 [
file
] [
log
] [
blame
] [
edit
]
use
debug_tree
::*;
fn
a
()
{
add_branch
!(
"a"
);
b
();
c
();
}
fn
b
()
{
add_branch
!(
"b"
);
c
();
}
fn
c
()
{
add_branch
!(
"c"
);
add_leaf
!(
"Nothing to see here"
);
}
fn
main
()
{
defer_write
!(
"examples/out/nested.txt"
);
a
();
}