]> git.lizzy.rs Git - rust.git/blobdiff - src/test/rustdoc/issue-53812.rs
Rollup merge of #68945 - mjbshaw:once_is_completed, r=LukasKalbertodt
[rust.git] / src / test / rustdoc / issue-53812.rs
index f0113d13bb4f4fb1e66e21a24d70764b2eec9947..3ebf154077f49c3a7b24b8bf9647f9dc3a28cd76 100644 (file)
@@ -1,13 +1,3 @@
-// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 pub trait MyIterator {
 }
 
@@ -23,4 +13,8 @@ macro_rules! array_impls {
 }
 
 // @has issue_53812/trait.MyIterator.html '//*[@id="implementors-list"]//h3[1]' 'MyStruct<[T; 0]>'
+// @has - '//*[@id="implementors-list"]//h3[2]' 'MyStruct<[T; 1]>'
+// @has - '//*[@id="implementors-list"]//h3[3]' 'MyStruct<[T; 2]>'
+// @has - '//*[@id="implementors-list"]//h3[4]' 'MyStruct<[T; 3]>'
+// @has - '//*[@id="implementors-list"]//h3[5]' 'MyStruct<[T; 10]>'
 array_impls! { 10 3 2 1 0 }