2015-03-25 16:53:28 +00:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-03-26 19:06:26 +00:00
|
|
|
#![feature(associated_consts)]
|
|
|
|
|
2015-03-25 16:53:28 +00:00
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
enum Bar {
|
|
|
|
Var1,
|
|
|
|
Var2,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use inherent and trait impls to test UFCS syntax.
|
|
|
|
impl Foo {
|
|
|
|
const MYBAR: Bar = Bar::Var2;
|
|
|
|
}
|
|
|
|
|
2015-04-25 04:58:40 +00:00
|
|
|
trait HasBar {
|
2015-03-25 16:53:28 +00:00
|
|
|
const THEBAR: Bar;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl HasBar for Foo {
|
|
|
|
const THEBAR: Bar = Bar::Var1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
// Inherent impl
|
|
|
|
assert!(match Bar::Var2 {
|
|
|
|
Foo::MYBAR => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
|
|
|
assert!(match Bar::Var2 {
|
|
|
|
<Foo>::MYBAR => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
|
|
|
// Trait impl
|
|
|
|
assert!(match Bar::Var1 {
|
|
|
|
<Foo>::THEBAR => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
|
|
|
assert!(match Bar::Var1 {
|
|
|
|
<Foo as HasBar>::THEBAR => true,
|
|
|
|
_ => false,
|
|
|
|
});
|
|
|
|
}
|