summary refs log tree commit diff
path: root/src/test/codegen/abi-repr-ext.rs
blob: 9dba1718acd8b2f03c9e82022c1f96f961dc39a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![crate_type="lib"]

#[repr(i8)]
pub enum Type {
    Type1 = 0,
    Type2 = 1
}

// CHECK: define{{( dso_local)?}} signext i8 @test()
#[no_mangle]
pub extern "C" fn test() -> Type {
    Type::Type1
}