2016-04-26 12:51:14 -05:00
|
|
|
#![crate_type="lib"]
|
|
|
|
|
|
|
|
// This is a file that pulls in a separate file as a submodule, where
|
|
|
|
// that separate file has many multi-byte characters, to try to
|
|
|
|
// encourage the compiler to trip on them.
|
|
|
|
|
2019-03-11 19:49:17 -05:00
|
|
|
#[path = "issue-24687-mbcs-in-comments.rs"]
|
|
|
|
mod issue_24687_mbcs_in_comments;
|
2016-04-26 12:51:14 -05:00
|
|
|
|
2019-03-11 19:49:17 -05:00
|
|
|
pub use issue_24687_mbcs_in_comments::D;
|