summary refs log tree commit diff
path: root/src/test/compile-fail-fulldeps/macro-crate-cannot-read-embedded-ident.rs
blob: fd1deffb59d4da94a3f81b8253ee63752b1cb0fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2014 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.

// aux-build:macro_crate_test.rs
// ignore-stage1
// error-pattern: unknown start of token: \u{0}

// Issue #15750 and #15962 : this test is checking that the standard
// parser rejects embedded idents.  pnkfelix did not want to attempt
// to make a test file that itself used the embedded ident input form,
// since he worried that would be difficult to work with in many text
// editors, so instead he made a macro that expands into the embedded
// ident form.

#![feature(plugin)]
#![plugin(macro_crate_test)]

fn main() {
    let x = 0;
    assert_eq!(3, forged_ident!());
}