diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-02-21 16:29:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-21 16:29:56 +0100 |
| commit | c118d37ac404e9edc6273f5f7d8cb418063a30b2 (patch) | |
| tree | f1eac774d5c54fc079ac7439ea4c030289485ddb /src/test/rustdoc | |
| parent | d9f5eeb57e5d3d1d7abff2efa19b35c57ccf21b3 (diff) | |
| parent | 5cbf9aedb806af63cc6ad80b19e598c2e0a10629 (diff) | |
| download | rust-c118d37ac404e9edc6273f5f7d8cb418063a30b2.tar.gz rust-c118d37ac404e9edc6273f5f7d8cb418063a30b2.zip | |
Rollup merge of #48382 - GuillaumeGomez:fix-rustdoc-test-panic, r=estebank
Fix rustdoc test ICE Fixes #48377. r? @QuietMisdreavus
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() {} |
