2015-03-15 20:35:25 -05: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 14:06:26 -05:00
|
|
|
#![feature(associated_consts)]
|
2015-03-22 05:38:42 -05:00
|
|
|
#![deny(non_upper_case_globals)]
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
struct Foo;
|
2015-03-15 20:35:25 -05:00
|
|
|
|
2015-03-22 05:38:42 -05:00
|
|
|
impl Foo {
|
|
|
|
const not_upper: bool = true;
|
2015-03-15 20:35:25 -05:00
|
|
|
}
|
2015-03-22 05:38:42 -05:00
|
|
|
//~^^ ERROR associated constant `not_upper` should have an upper case name such as `NOT_UPPER`
|
2015-03-15 20:35:25 -05:00
|
|
|
|
2015-03-22 05:38:42 -05:00
|
|
|
fn main() {}
|