summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0259.rs
blob: c83561be9c6a5b509cb8a37449924ab240f4cfe6 (plain)
1
2
3
4
5
6
7
8
9
#![feature(rustc_private)]
#![allow(unused_extern_crates)]

extern crate alloc;

extern crate libc as alloc;
//~^ ERROR E0259

fn main() {}