1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

MSVC backtrace

This commit is contained in:
Steven Gay
2019-11-13 19:05:06 +11:00
committed by Alexander Medvednikov
parent 714d61aed7
commit 51663520c8
7 changed files with 236 additions and 46 deletions

View File

@ -0,0 +1,11 @@
/*
Test for backtrace capability
*/
fn a_method() {
print_backtrace()
}
fn test_backtrace() {
a_method()
//panic('hi')
}