summaryrefslogtreecommitdiffstats
path: root/tests/rustdoc/double-quote-escape.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/rustdoc/double-quote-escape.rs')
-rw-r--r--tests/rustdoc/double-quote-escape.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/rustdoc/double-quote-escape.rs b/tests/rustdoc/double-quote-escape.rs
new file mode 100644
index 000000000..350c89741
--- /dev/null
+++ b/tests/rustdoc/double-quote-escape.rs
@@ -0,0 +1,11 @@
+#![crate_name = "foo"]
+
+pub trait Foo<T> {
+ fn foo() {}
+}
+
+pub struct Bar;
+
+// @has foo/struct.Bar.html
+// @has - '//*[@class="sidebar-elems"]//section//a[@href="#impl-Foo%3Cunsafe%20extern%20%22C%22%20fn()%3E-for-Bar"]' 'Foo<unsafe extern "C" fn()>'
+impl Foo<unsafe extern "C" fn()> for Bar {}