]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/resolve-primitive-fallback.rs
New upstream version 1.16.0+dfsg1
[rustc.git] / src / test / compile-fail / resolve-primitive-fallback.rs
CommitLineData
54a0048b 1// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
223e47cc 11fn main() {
476ff2be
SL
12 // Make sure primitive type fallback doesn't work in value namespace
13 std::mem::size_of(u16);
32a655c1 14 //~^ ERROR expected value, found builtin type `u16`
476ff2be
SL
15 //~| ERROR this function takes 0 parameters but 1 parameter was supplied
16
17 // Make sure primitive type fallback doesn't work with global paths
18 let _: ::u8;
32a655c1 19 //~^ ERROR cannot find type `u8` in the crate root
223e47cc 20}