]> git.lizzy.rs Git - rust.git/blobdiff - src/test/rustdoc/private-type-alias.rs
Auto merge of #69550 - RalfJung:scalar, r=oli-obk
[rust.git] / src / test / rustdoc / private-type-alias.rs
index 65e3e023830948f8d5f262089a4bc95e5cd7c0f3..ec7385404f0b2ff91d3a421d0504e762734b7131 100644 (file)
@@ -1,13 +1,3 @@
-// Copyright 2016 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.
-
 type MyResultPriv<T> = Result<T, u16>;
 pub type MyResultPub<T> = Result<T, u64>;
 
@@ -21,6 +11,17 @@ pub fn get_result_pub() -> MyResultPub<u32> {
     panic!();
 }
 
+pub type PubRecursive = u16;
+type PrivRecursive3 = u8;
+type PrivRecursive2 = PubRecursive;
+type PrivRecursive1 = PrivRecursive3;
+
+// PrivRecursive1 is expanded twice and stops at u8
+// PrivRecursive2 is expanded once and stops at public type alias PubRecursive
+// @has private_type_alias/fn.get_result_recursive.html '//pre' '(u8, PubRecursive)'
+pub fn get_result_recursive() -> (PrivRecursive1, PrivRecursive2) {
+    panic!();
+}
 
 type MyLifetimePriv<'a> = &'a isize;