We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-assert backtraces
1 parent e933cd9 commit 70221d5Copy full SHA for 70221d5
vlib/v/gen/c/assert.v
@@ -121,7 +121,7 @@ fn (mut g Gen) gen_assert_postfailure_mode(node ast.AssertStmt) {
121
if g.pref.assert_failure_mode == .backtraces
122
|| g.fn_decl.attrs.any(it.name == 'assert_backtraces') {
123
if _ := g.table.fns['print_backtrace'] {
124
- g.writeln('\tprint_backtrace();')
+ g.writeln('\tbuiltin__print_backtrace();')
125
}
126
127
if g.pref.is_test {
0 commit comments