diff options
| author | bors <bors@rust-lang.org> | 2015-08-25 01:10:55 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-08-25 01:10:55 +0000 |
| commit | fd7344c4fea081657fff75b9bd112adb22839890 (patch) | |
| tree | 10157aa30e712387d35115b26bfbfa0a77e647fa /src/test/rustdoc | |
| parent | bc3573470f009fa078fe063700b8df2854e8499e (diff) | |
| parent | efc98fab26b54ce24e329dff85ca4cbfe3ad8bea (diff) | |
| download | rust-fd7344c4fea081657fff75b9bd112adb22839890.tar.gz rust-fd7344c4fea081657fff75b9bd112adb22839890.zip | |
Auto merge of #27945 - Eljay:upgrade-hoedown, r=alexcrichton
Some hoedown FFI changes: - `HOEDOWN_EXT_NO_INTRA_EMPHASIS` constant changed. - Updated/tidied up all callback function signatures. - All opaque data access has an additional layer of indirection for some reason (`hoedown_renderer_data`). This also fixes #27862.
Diffstat (limited to 'src/test/rustdoc')
| -rw-r--r-- | src/test/rustdoc/issue-27862.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-27862.rs b/src/test/rustdoc/issue-27862.rs new file mode 100644 index 00000000000..6b56585ae8a --- /dev/null +++ b/src/test/rustdoc/issue-27862.rs @@ -0,0 +1,15 @@ +// 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. + + +/// Test | Table +/// ------|------------- +/// t = b | id = \|x\| x +pub struct Foo; // @has issue_27862/struct.Foo.html //td 'id = |x| x' |
