2025-06-29 17:43:51 +05:00
|
|
|
//! Test that multibyte Unicode characters don't crash the compiler.
|
|
|
|
|
//!
|
|
|
|
|
//! Regression test for <https://github.com/rust-lang/rust/issues/4780>.
|
|
|
|
|
|
2019-07-27 00:54:25 +03:00
|
|
|
//@ run-pass
|
2013-05-21 12:55:54 -07:00
|
|
|
|
2013-09-25 00:43:37 -07:00
|
|
|
pub fn main() {
|
2014-01-09 21:06:55 +11:00
|
|
|
println!("마이너스 사인이 없으면");
|
2013-05-21 12:55:54 -07:00
|
|
|
}
|