diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-05-30 10:52:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-05-30 10:52:48 +0200 |
| commit | 040af62a5a780b55912f331ec1b576ccd680a109 (patch) | |
| tree | 8f27c7507ab30eef467f951afeb1478ac69f7cee /src/test/rustdoc | |
| parent | c28084ac16af4ab594b6860958df140e7c876a13 (diff) | |
| parent | ed8a4d5bc1abd12695dba6c1c7d4f42d553aa3f1 (diff) | |
| download | rust-040af62a5a780b55912f331ec1b576ccd680a109.tar.gz rust-040af62a5a780b55912f331ec1b576ccd680a109.zip | |
Rollup merge of #60802 - euclio:pulldown-cmark-panic, r=GuillaumeGomez
upgrade rustdoc's `pulldown-cmark` to 0.5.2 Fixes #60482.
Diffstat (limited to 'src/test/rustdoc')
| -rw-r--r-- | src/test/rustdoc/issue-60482.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/rustdoc/issue-60482.rs b/src/test/rustdoc/issue-60482.rs new file mode 100644 index 00000000000..0fd1daa746d --- /dev/null +++ b/src/test/rustdoc/issue-60482.rs @@ -0,0 +1,9 @@ +// This code caused a panic in `pulldown-cmark` 0.4.1. + +pub const BASIC_UNICODE: bool = true; + + +/// # `BASIC_UNICODE`: `A` `|` +/// ```text +/// ``` +pub const BASIC_FONTS: bool = true; |
