Add test for compiler reexports removal

This commit is contained in:
Guillaume Gomez 2020-10-10 15:34:18 +02:00
parent e3c3efe5ab
commit 0faaa499cc

View File

@ -0,0 +1,7 @@
// compile-flags: --no-defaults
#![crate_name = "foo"]
// @has 'foo/index.html' '//code' 'extern crate std;'
// @!has 'foo/index.html' '//code' 'use std::prelude::v1::*;'
pub struct Foo;