// Copyright 2012 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. fn main() { let x: int; //~ ERROR type parameters are not allowed on this type let x: i8; //~ ERROR type parameters are not allowed on this type let x: i16; //~ ERROR type parameters are not allowed on this type let x: i32; //~ ERROR type parameters are not allowed on this type let x: i64; //~ ERROR type parameters are not allowed on this type let x: uint; //~ ERROR type parameters are not allowed on this type let x: u8; //~ ERROR type parameters are not allowed on this type let x: u16; //~ ERROR type parameters are not allowed on this type let x: u32; //~ ERROR type parameters are not allowed on this type let x: u64; //~ ERROR type parameters are not allowed on this type let x: char; //~ ERROR type parameters are not allowed on this type let x: int<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: i8<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: i16<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: i32<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: i64<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: uint<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: u8<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: u16<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: u32<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: u64<'static>; //~ ERROR lifetime parameters are not allowed on this type let x: char<'static>; //~ ERROR lifetime parameters are not allowed on this type }