2016-08-19 18:58:14 -07:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
2013-10-29 17:47:11 -07: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.
|
|
|
|
|
2016-08-19 18:58:14 -07:00
|
|
|
#![feature(attr_literals)]
|
2015-02-09 20:01:45 +01:00
|
|
|
|
2016-08-19 18:58:14 -07:00
|
|
|
// deprecated doesn't currently support literals
|
|
|
|
#[deprecated("since")] //~ ERROR E0565
|
|
|
|
fn f() { }
|
2013-10-29 17:47:11 -07:00
|
|
|
|
2016-08-19 18:58:14 -07:00
|
|
|
fn main() { }
|