diff options
| author | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-04-29 10:21:47 +0200 |
|---|---|---|
| committer | Felix S. Klock II <pnkfelix@pnkfx.org> | 2015-04-29 10:53:09 +0200 |
| commit | 2ae82fcd959db78debfb4cf5ef85d310da44f85c (patch) | |
| tree | 7ebde30de036a3442d1df8d1659872b7612e2aab /src/test/run-pass | |
| parent | ecd3572f496c3249719ad9b91849e80fdf7e1fb2 (diff) | |
| download | rust-2ae82fcd959db78debfb4cf5ef85d310da44f85c.tar.gz rust-2ae82fcd959db78debfb4cf5ef85d310da44f85c.zip | |
Regression test for issue 24687.
use visible characters for the multibyte character filler.
Diffstat (limited to 'src/test/run-pass')
| -rw-r--r-- | src/test/run-pass/issue24687-embed-debuginfo.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/run-pass/issue24687-embed-debuginfo.rs b/src/test/run-pass/issue24687-embed-debuginfo.rs new file mode 100644 index 00000000000..ad30d53f1a6 --- /dev/null +++ b/src/test/run-pass/issue24687-embed-debuginfo.rs @@ -0,0 +1,21 @@ +// Copyright 2015 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +// aux-build:issue24687_lib.rs + +extern crate issue24687_lib as d; + +fn main() { + // Create a d, which has a destructor whose body will be trans'ed + // into the generated code here, and thus the local debuginfo will + // need references into the original source locations from + // `importer` above. + let _d = d::D("Hi"); +} |
