2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2013-2014 The Rust Project Developers. See the COPYRIGHT
|
2013-07-02 03:33:51 -05:00
|
|
|
// 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.
|
|
|
|
|
2014-02-07 13:08:32 -06:00
|
|
|
// ignore-android: FIXME(#10381)
|
2013-11-04 00:53:01 -06:00
|
|
|
|
2014-02-06 21:57:09 -06:00
|
|
|
// compile-flags:-g
|
2013-09-06 09:00:08 -05:00
|
|
|
// debugger:rbreak zzz
|
2014-02-20 19:44:29 -06:00
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::SINGLE_VARIANT'
|
|
|
|
// check:$1 = TheOnlyVariant
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::AUTO_ONE'
|
|
|
|
// check:$2 = One
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::AUTO_TWO'
|
|
|
|
// check:$3 = One
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::AUTO_THREE'
|
|
|
|
// check:$4 = One
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::MANUAL_ONE'
|
|
|
|
// check:$5 = OneHundred
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::MANUAL_TWO'
|
|
|
|
// check:$6 = OneHundred
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::MANUAL_THREE'
|
|
|
|
// check:$7 = OneHundred
|
|
|
|
|
2013-07-02 03:33:51 -05:00
|
|
|
// debugger:run
|
|
|
|
// debugger:finish
|
|
|
|
|
|
|
|
// debugger:print auto_one
|
2014-02-20 19:44:29 -06:00
|
|
|
// check:$8 = One
|
2013-07-02 03:33:51 -05:00
|
|
|
|
|
|
|
// debugger:print auto_two
|
2014-02-20 19:44:29 -06:00
|
|
|
// check:$9 = Two
|
2013-07-02 03:33:51 -05:00
|
|
|
|
|
|
|
// debugger:print auto_three
|
2014-02-20 19:44:29 -06:00
|
|
|
// check:$10 = Three
|
2013-07-02 03:33:51 -05:00
|
|
|
|
|
|
|
// debugger:print manual_one_hundred
|
2014-02-20 19:44:29 -06:00
|
|
|
// check:$11 = OneHundred
|
2013-07-02 03:33:51 -05:00
|
|
|
|
|
|
|
// debugger:print manual_one_thousand
|
2014-02-20 19:44:29 -06:00
|
|
|
// check:$12 = OneThousand
|
2013-07-02 03:33:51 -05:00
|
|
|
|
|
|
|
// debugger:print manual_one_million
|
2014-02-20 19:44:29 -06:00
|
|
|
// check:$13 = OneMillion
|
2013-07-02 03:33:51 -05:00
|
|
|
|
2013-07-02 11:10:24 -05:00
|
|
|
// debugger:print single_variant
|
2014-02-20 19:44:29 -06:00
|
|
|
// check:$14 = TheOnlyVariant
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::AUTO_TWO'
|
|
|
|
// check:$15 = Two
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::AUTO_THREE'
|
|
|
|
// check:$16 = Three
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::MANUAL_TWO'
|
|
|
|
// check:$17 = OneThousand
|
|
|
|
|
|
|
|
// debugger:print 'c-style-enum::MANUAL_THREE'
|
|
|
|
// check:$18 = OneMillion
|
2013-07-02 03:33:51 -05:00
|
|
|
|
2013-08-17 10:37:42 -05:00
|
|
|
#[allow(unused_variable)];
|
|
|
|
|
2013-07-02 11:10:24 -05:00
|
|
|
enum AutoDiscriminant {
|
2013-07-02 03:33:51 -05:00
|
|
|
One,
|
|
|
|
Two,
|
|
|
|
Three
|
|
|
|
}
|
|
|
|
|
2013-07-02 11:10:24 -05:00
|
|
|
enum ManualDiscriminant {
|
2013-07-02 03:33:51 -05:00
|
|
|
OneHundred = 100,
|
|
|
|
OneThousand = 1000,
|
|
|
|
OneMillion = 1000000
|
|
|
|
}
|
|
|
|
|
2013-07-02 11:10:24 -05:00
|
|
|
enum SingleVariant {
|
|
|
|
TheOnlyVariant
|
|
|
|
}
|
|
|
|
|
2014-02-20 19:44:29 -06:00
|
|
|
static SINGLE_VARIANT: SingleVariant = TheOnlyVariant;
|
|
|
|
|
|
|
|
static mut AUTO_ONE: AutoDiscriminant = One;
|
|
|
|
static mut AUTO_TWO: AutoDiscriminant = One;
|
|
|
|
static mut AUTO_THREE: AutoDiscriminant = One;
|
|
|
|
|
|
|
|
static mut MANUAL_ONE: ManualDiscriminant = OneHundred;
|
|
|
|
static mut MANUAL_TWO: ManualDiscriminant = OneHundred;
|
|
|
|
static mut MANUAL_THREE: ManualDiscriminant = OneHundred;
|
|
|
|
|
2013-07-02 03:33:51 -05:00
|
|
|
fn main() {
|
|
|
|
|
|
|
|
let auto_one = One;
|
|
|
|
let auto_two = Two;
|
|
|
|
let auto_three = Three;
|
|
|
|
|
|
|
|
let manual_one_hundred = OneHundred;
|
|
|
|
let manual_one_thousand = OneThousand;
|
|
|
|
let manual_one_million = OneMillion;
|
|
|
|
|
2013-07-02 11:10:24 -05:00
|
|
|
let single_variant = TheOnlyVariant;
|
|
|
|
|
2014-02-20 19:44:29 -06:00
|
|
|
unsafe {
|
|
|
|
AUTO_TWO = Two;
|
|
|
|
AUTO_THREE = Three;
|
|
|
|
|
|
|
|
MANUAL_TWO = OneThousand;
|
|
|
|
MANUAL_THREE = OneMillion;
|
|
|
|
};
|
|
|
|
|
2013-07-02 03:33:51 -05:00
|
|
|
zzz();
|
|
|
|
}
|
|
|
|
|
2013-08-17 10:37:42 -05:00
|
|
|
fn zzz() {()}
|