diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-02-20 20:30:29 +0100 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-02-20 20:30:29 +0100 |
| commit | 5cbf9aedb806af63cc6ad80b19e598c2e0a10629 (patch) | |
| tree | f14701ecc4626fb3e95c4e6044eef3906aa7cf2f /src/test/rustdoc | |
| parent | 27a046e9338fb0455c33b13e8fe28da78212dedc (diff) | |
| download | rust-5cbf9aedb806af63cc6ad80b19e598c2e0a10629.tar.gz rust-5cbf9aedb806af63cc6ad80b19e598c2e0a10629.zip | |
Fix rustdoc test ICE
Diffstat (limited to 'src/test/rustdoc')
| -rw-r--r-- | src/test/rustdoc/issue-48377.rs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-48377.rs b/src/test/rustdoc/issue-48377.rs new file mode 100644 index 00000000000..d098b1a5b02 --- /dev/null +++ b/src/test/rustdoc/issue-48377.rs @@ -0,0 +1,23 @@ +// Copyright 2018 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. + +// compile-flags:--test + +//! This is a doc comment +//! +//! ```rust +//! fn main() {} +//! ``` +//! +//! With a trailing code fence +//! ``` + +/// Some foo function +pub fn foo() {} |
