mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 00:29:23 +00:00
16 lines
233 B
Rust
16 lines
233 B
Rust
//@ known-bug: rust-lang/rust#123887
|
|
//@ compile-flags: -Clink-dead-code
|
|
|
|
#![feature(extern_types)]
|
|
#![feature(unsized_fn_params)]
|
|
|
|
extern "C" {
|
|
pub type ExternType;
|
|
}
|
|
|
|
impl ExternType {
|
|
pub fn f(self) {}
|
|
}
|
|
|
|
pub fn main() {}
|