about summary refs log tree commit diff
path: root/src/test/ui/no-std-inject.rs
blob: 09879c791f89f1ca11c177fc06612df36f4c33a5 (plain)
1
2
3
4
5
6
7
#![no_std]
#![allow(unused_extern_crates)]

extern crate core; //~ ERROR: the name `core` is defined multiple times
extern crate std;

fn main() {}