]> git.proxmox.com Git - rustc.git/blame - src/test/incremental/type_alias_cross_crate/b.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / incremental / type_alias_cross_crate / b.rs
CommitLineData
1a4d82fc 1// Copyright 2014 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
a7813a04 11// aux-build:a.rs
3157f602 12// revisions:rpass1 rpass2 rpass3
5bcae85e 13// compile-flags: -Z query-dep-graph
a7813a04
XL
14
15#![feature(rustc_attrs)]
223e47cc 16
1a4d82fc 17extern crate a;
223e47cc 18
a7813a04 19#[rustc_dirty(label="TypeckItemBody", cfg="rpass2")]
3157f602 20#[rustc_clean(label="TypeckItemBody", cfg="rpass3")]
a7813a04
XL
21pub fn use_X() -> u32 {
22 let x: a::X = 22;
23 x as u32
24}
25
26#[rustc_clean(label="TypeckItemBody", cfg="rpass2")]
3157f602 27#[rustc_clean(label="TypeckItemBody", cfg="rpass3")]
a7813a04
XL
28pub fn use_Y() {
29 let x: a::Y = 'c';
30}
31
32pub fn main() { }