mirror of https://github.com/rust-lang/rust
11 lines
320 B
Rust
11 lines
320 B
Rust
#![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.
|
|
|
|
#[path = "issue-24687-mbcs-in-comments.rs"]
|
|
mod issue_24687_mbcs_in_comments;
|
|
|
|
pub use issue_24687_mbcs_in_comments::D;
|