about summary refs log tree commit diff
path: root/src/test/run-make/rustdoc-negative-impl/foo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-make/rustdoc-negative-impl/foo.rs')
-rw-r--r--src/test/run-make/rustdoc-negative-impl/foo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/rustdoc-negative-impl/foo.rs b/src/test/run-make/rustdoc-negative-impl/foo.rs
index b5fcbf46c5c..6c56bcc9be6 100644
--- a/src/test/run-make/rustdoc-negative-impl/foo.rs
+++ b/src/test/run-make/rustdoc-negative-impl/foo.rs
@@ -13,7 +13,7 @@
 // @matches foo/struct.Alpha.html '//pre' "pub struct Alpha"
 pub struct Alpha;
 // @matches foo/struct.Bravo.html '//pre' "pub struct Bravo<B>"
-pub struct Bravo<B>;
+pub struct Bravo<B>(B);
 
 // @matches foo/struct.Alpha.html '//*[@class="impl"]//code' "impl !Send for Alpha"
 impl !Send for Alpha {}