aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/gen/native/tests/asm.vv
blob: 1c08411cccd8ca4c0789736faf06e6cd302417c1 (plain)
1
2
3
4
5
6
7
8
9
10
fn asm_test() {
	asm amd64 {
		nop
	}
	println('inline works')
}

fn main() {
	asm_test()
}