summary refs log tree commit diff
path: root/src/test/codegen/abi-repr-ext.rs
blob: f93ccd794117dffc46ad5bcdcdc3bc12d2975f04 (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 signext i8 @test()
#[no_mangle]
pub extern "C" fn test() -> Type {
    Type::Type1
}