mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-21 01:22:53 +00:00
11 lines
123 B
Rust
11 lines
123 B
Rust
// aux-build:ufuncs.rs
|
|
|
|
extern crate ufuncs;
|
|
|
|
use ufuncs::udrop;
|
|
|
|
fn main() {
|
|
udrop as fn([u8]);
|
|
//~^ERROR E0277
|
|
}
|