2014-02-07 13:08:32 -06:00
|
|
|
// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 19:32:48 -06: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.
|
|
|
|
|
2013-07-12 03:18:59 -05:00
|
|
|
// this now fails (correctly, I claim) because hygiene prevents
|
|
|
|
// the assembled identifier from being a reference to the binding.
|
2014-04-03 18:24:21 -05:00
|
|
|
#![feature(concat_idents)]
|
2011-08-03 13:46:32 -05:00
|
|
|
|
2013-02-01 21:43:17 -06:00
|
|
|
pub fn main() {
|
2014-05-25 05:10:11 -05:00
|
|
|
let asdf_fdsa = "<.<".to_string();
|
2015-12-11 01:59:11 -06:00
|
|
|
assert!(concat_idents!(asd, f_f, dsa) == "<.<".to_string());
|
2014-02-21 17:41:51 -06:00
|
|
|
//~^ ERROR: unresolved name `asdf_fdsa`
|
2011-08-03 13:46:32 -05:00
|
|
|
|
2015-06-07 13:00:38 -05:00
|
|
|
assert_eq!(stringify!(use_mention_distinction), "use_mention_distinction");
|
2011-08-13 02:10:18 -05:00
|
|
|
}
|