blob: 7f351e48b6fa1a974b41e49e2eac5a822bf07bc8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// compile-flags: --extern=my-awesome-library=libawesome.rlib
// error-pattern: crate name `my-awesome-library` passed to `--extern` is not a valid ASCII identifier
// error-pattern: consider replacing the dashes with underscores: `my_awesome_library`
// In a sense, this is a regression test for issue #113035. We no longer suggest
// `pub use my-awesome-library::*;` (sic!) as we outright ban this crate name.
pub use my_awesome_library::*;
fn main() {}
|