]> git.lizzy.rs Git - rust.git/blobdiff - src/test/rustdoc/where.rs
rustdoc: where clause adjustment to fix tests
[rust.git] / src / test / rustdoc / where.rs
index d8dc115abf91e1039fa8b30561540c43ed79a753..e691f7c5bea01ef8e054f78e1cc71c7c9bcb7492 100644 (file)
@@ -44,5 +44,5 @@ pub enum Foxtrot<F> { Foxtrot1(F) }
 impl<F> MyTrait for Foxtrot<F> where F: MyTrait {}
 
 // @has foo/type.Golf.html '//pre[@class="rust typedef"]' \
-//          "type Golf<T> where T: Clone = (T, T)"
+//          "type Golf<T> where T: Clone, = (T, T)"
 pub type Golf<T> where T: Clone = (T, T);