Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
cd20491b43ed4f341a6b2debe309a251fe2b4305
/
.
/
crates
/
debug_tree
/
examples
/
nested.rs
blob: 5315be5d1fe27ff9abc4de298c969b5fba52a368 [
file
] [
log
] [
blame
]
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
();
}