v2 / vlib / v / gen / c / testdata / windows_callconv_generated_c.vv
7 lines · 6 sloc · 143 bytes · 3378a7d92ea361147f48513a748889f87ca52340
Raw
1// vtest vflags: -os windows -shared -gc none -no-skip-unused
2module test_print
3
4@[export: 'get_name']
5fn get_name() &char {
6 return c'Test'
7}
8