|
| 1 | +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT |
| 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 | + |
| 11 | +// This test ensures that attributes on formals in generic parameter |
| 12 | +// lists are rejected if feature(generic_param_attrs) is not enabled. |
| 13 | +// |
| 14 | +// (We are prefixing all tested features with `rustc_`, to ensure that |
| 15 | +// the attributes themselves won't be rejected by the compiler when |
| 16 | +// using `rustc_attrs` feature. There is a separate compile-fail/ test |
| 17 | +// ensuring that the attribute feature-gating works in this context.) |
| 18 | + |
| 19 | +#![feature(rustc_attrs)] |
| 20 | +#![allow(dead_code)] |
| 21 | + |
| 22 | +struct StLt<#[rustc_lt_struct] 'a>(&'a u32); |
| 23 | +//~^ ERROR attributes on lifetime bindings are experimental (see issue #34761) |
| 24 | +struct StTy<#[rustc_ty_struct] I>(I); |
| 25 | +//~^ ERROR attributes on type parameter bindings are experimental (see issue #34761) |
| 26 | + |
| 27 | +enum EnLt<#[rustc_lt_enum] 'b> { A(&'b u32), B } |
| 28 | +//~^ ERROR attributes on lifetime bindings are experimental (see issue #34761) |
| 29 | +enum EnTy<#[rustc_ty_enum] J> { A(J), B } |
| 30 | +//~^ ERROR attributes on type parameter bindings are experimental (see issue #34761) |
| 31 | + |
| 32 | +trait TrLt<#[rustc_lt_trait] 'c> { fn foo(&self, _: &'c [u32]) -> &'c u32; } |
| 33 | +//~^ ERROR attributes on lifetime bindings are experimental (see issue #34761) |
| 34 | +trait TrTy<#[rustc_ty_trait] K> { fn foo(&self, _: K); } |
| 35 | +//~^ ERROR attributes on type parameter bindings are experimental (see issue #34761) |
| 36 | + |
| 37 | +type TyLt<#[rustc_lt_type] 'd> = &'d u32; |
| 38 | +//~^ ERROR attributes on lifetime bindings are experimental (see issue #34761) |
| 39 | +type TyTy<#[rustc_ty_type] L> = (L, ); |
| 40 | +//~^ ERROR attributes on type parameter bindings are experimental (see issue #34761) |
| 41 | + |
| 42 | +impl<#[rustc_lt_inherent] 'e> StLt<'e> { } |
| 43 | +//~^ ERROR attributes on lifetime bindings are experimental (see issue #34761) |
| 44 | +impl<#[rustc_ty_inherent] M> StTy<M> { } |
| 45 | +//~^ ERROR attributes on type parameter bindings are experimental (see issue #34761) |
| 46 | + |
| 47 | +impl<#[rustc_lt_impl_for] 'f> TrLt<'f> for StLt<'f> { |
| 48 | + //~^ ERROR attributes on lifetime bindings are experimental (see issue #34761) |
| 49 | + fn foo(&self, _: &'f [u32]) -> &'f u32 { loop { } } |
| 50 | +} |
| 51 | +impl<#[rustc_ty_impl_for] N> TrTy<N> for StTy<N> { |
| 52 | + //~^ ERROR attributes on type parameter bindings are experimental (see issue #34761) |
| 53 | + fn foo(&self, _: N) { } |
| 54 | +} |
| 55 | + |
| 56 | +fn f_lt<#[rustc_lt_fn] 'g>(_: &'g [u32]) -> &'g u32 { loop { } } |
| 57 | +//~^ ERROR attributes on lifetime bindings are experimental (see issue #34761) |
| 58 | +fn f_ty<#[rustc_ty_fn] O>(_: O) { } |
| 59 | +//~^ ERROR attributes on type parameter bindings are experimental (see issue #34761) |
| 60 | + |
| 61 | +impl<I> StTy<I> { |
| 62 | + fn m_lt<#[rustc_lt_meth] 'h>(_: &'h [u32]) -> &'h u32 { loop { } } |
| 63 | + //~^ ERROR attributes on lifetime bindings are experimental (see issue #34761) |
| 64 | + fn m_ty<#[rustc_ty_meth] P>(_: P) { } |
| 65 | + //~^ ERROR attributes on type parameter bindings are experimental (see issue #34761) |
| 66 | +} |
| 67 | + |
| 68 | +fn hof_lt<Q>(_: Q) |
| 69 | + where Q: for <#[rustc_lt_hof] 'i> Fn(&'i [u32]) -> &'i u32 |
| 70 | + //~^ ERROR attributes on lifetime bindings are experimental (see issue #34761) |
| 71 | +{ |
| 72 | +} |
| 73 | + |
| 74 | +fn main() { |
| 75 | + |
| 76 | +} |
0 commit comments