diff options
| author | mibac138 <5672750+mibac138@users.noreply.github.com> | 2020-05-08 18:14:57 +0200 |
|---|---|---|
| committer | mibac138 <5672750+mibac138@users.noreply.github.com> | 2020-05-08 18:14:57 +0200 |
| commit | bbda107436c01204614dce4cff70a0b475945a9d (patch) | |
| tree | 4a40bcad6ec5f089664e925cadd5fdb23c971c54 | |
| parent | 6f7e9a842debd31590d8f347bd4f7534159d6a91 (diff) | |
| download | rust-bbda107436c01204614dce4cff70a0b475945a9d.tar.gz rust-bbda107436c01204614dce4cff70a0b475945a9d.zip | |
Add test for strikethrough in rustdoc
| -rw-r--r-- | src/test/rustdoc/test-strikethrough.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/rustdoc/test-strikethrough.rs b/src/test/rustdoc/test-strikethrough.rs new file mode 100644 index 00000000000..c7855729a98 --- /dev/null +++ b/src/test/rustdoc/test-strikethrough.rs @@ -0,0 +1,6 @@ +#![crate_name = "foo"] + +// @has foo/fn.f.html +// @has - //del "Y" +/// ~~Y~~ +pub fn f() {} |
