about summary refs log tree commit diff
path: root/tests/ui/asm/empty_global_asm.rs
blob: 2517796ad107ce7980bada1fd4848e9bcfd7c4df (plain)
1
2
3
4
5
6
7
8
//@ needs-asm-support
//@ run-pass

use std::arch::global_asm;

global_asm!("");

fn main() {}