about summary refs log tree commit diff
path: root/tests/ui/linkage-attr/common-linkage-non-zero-init.rs
blob: 512616251c2f7aca0c7485c9e658e7e596f3f401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//@ build-fail
//@ failure-status: 101
//@ known-bug: #109681
//@ ignore-wasm32 this appears to SIGABRT on wasm, not fail cleanly
//@ compile-flags: -Z verify-llvm-ir
//@ ignore-backends: gcc

// This test verifies that we continue to hit the LLVM error for common linkage with non-zero
// initializers, since it generates invalid LLVM IR.
// Linkages are internal features marked as perma-unstable, so we don't need to fix the issue
// for now.
#![crate_type="lib"]
#![feature(linkage)]

#[linkage = "common"]
#[no_mangle]
pub static TEST: bool = true;