mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
11 lines
127 B
V
11 lines
127 B
V
/*
|
|
Test for backtrace capability
|
|
*/
|
|
fn a_method() {
|
|
print_backtrace()
|
|
}
|
|
|
|
fn test_backtrace() {
|
|
a_method()
|
|
//panic('hi')
|
|
}
|