aboutsummaryrefslogtreecommitdiff
path: root/test cases/rust/12 bindgen/src/global.rs
blob: 4b70b1ecc7284614142ece4cd5f28ba915a0e817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-license-identifer: Apache-2.0
// Copyright © 2023 Intel Corporation

#![allow(non_upper_case_globals)]
#![allow(non_camel_case_types)]
#![allow(non_snake_case)]

include!("global-project.rs");

fn main() {
    unsafe {
        std::process::exit(success());
    };
}