blob: b846214175e1c0de7de6eea83479e51eb8b7d049 [file] [log] [blame]
//@ 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() {}