]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/mir_cast_fn_ret.rs
New upstream version 1.19.0+dfsg1
[rustc.git] / src / test / run-pass / mir_cast_fn_ret.rs
CommitLineData
54a0048b 1// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
3157f602
XL
11pub extern "C" fn tuple2() -> (u16, u8) {
12 (1, 2)
13}
14
15pub extern "C" fn tuple3() -> (u8, u8, u8) {
16 (1, 2, 3)
17}
18
3157f602
XL
19pub fn test2() -> u8 {
20 tuple2().1
21}
22
3157f602
XL
23pub fn test3() -> u8 {
24 tuple3().2
a7813a04
XL
25}
26
27fn main() {
3157f602
XL
28 assert_eq!(test2(), 2);
29 assert_eq!(test3(), 3);
54a0048b 30}