error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:3:14 | LL | let x: isize; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:4:11 | LL | let x: i8; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:5:12 | LL | let x: i16; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:6:12 | LL | let x: i32; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:7:12 | LL | let x: i64; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:8:14 | LL | let x: usize; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:9:11 | LL | let x: u8; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:10:12 | LL | let x: u16; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:11:12 | LL | let x: u32; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:12:12 | LL | let x: u64; | ^^^^^ type argument not allowed error[E0109]: type arguments are not allowed for this type --> $DIR/prim-with-args.rs:13:13 | LL | let x: char; | ^^^^^ type argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:15:14 | LL | let x: isize<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:16:11 | LL | let x: i8<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:17:12 | LL | let x: i16<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:18:12 | LL | let x: i32<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:19:12 | LL | let x: i64<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:20:14 | LL | let x: usize<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:21:11 | LL | let x: u8<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:22:12 | LL | let x: u16<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:23:12 | LL | let x: u32<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:24:12 | LL | let x: u64<'static>; | ^^^^^^^ lifetime argument not allowed error[E0109]: lifetime arguments are not allowed for this type --> $DIR/prim-with-args.rs:25:13 | LL | let x: char<'static>; | ^^^^^^^ lifetime argument not allowed error: aborting due to 22 previous errors For more information about this error, try `rustc --explain E0109`.