]> git.proxmox.com Git - rustc.git/blame - src/test/ui/run-pass/cross-crate/auxiliary/xcrate_unit_struct.rs
New upstream version 1.30.0+dfsg1
[rustc.git] / src / test / ui / run-pass / cross-crate / auxiliary / xcrate_unit_struct.rs
CommitLineData
223e47cc
LB
1// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
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
1a4d82fc 11#![crate_type = "lib"]
223e47cc 12
1a4d82fc 13// used by the rpass test
970d7e83 14
c34b1796 15#[derive(Copy, Clone)]
1a4d82fc 16pub struct Struct;
970d7e83 17
c34b1796 18#[derive(Copy, Clone)]
1a4d82fc
JJ
19pub enum Unit {
20 UnitVariant,
21 Argument(Struct)
970d7e83
LB
22}
23
c34b1796
AL
24#[derive(Copy, Clone)]
25pub struct TupleStruct(pub usize, pub &'static str);
1a4d82fc 26
1a4d82fc
JJ
27// used by the cfail test
28
c34b1796 29#[derive(Copy, Clone)]
1a4d82fc 30pub struct StructWithFields {
c34b1796 31 foo: isize,
223e47cc
LB
32}
33
c34b1796 34#[derive(Copy, Clone)]
1a4d82fc
JJ
35pub enum EnumWithVariants {
36 EnumVariant,
c34b1796 37 EnumVariantArg(isize)
223e47cc 38}