blob: 746749e020422c4562886e68fa4015336fced043 (
plain)
1
2
3
4
5
6
|
//! Regression test for <https://github.com/rust-lang/rust/issues/100531>
#![crate_name = "export_extern_crate_as_self"]
//@ is "$.index[?(@.inner.module)].name" \"export_extern_crate_as_self\"
pub extern crate self as export_extern_crate_as_self; // Must be the same name as the crate already has
|