diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-07-23 22:17:27 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2019-07-28 18:47:02 +0300 |
| commit | 676d282dd3cd2dedba651e98c9a41af42983f08b (patch) | |
| tree | 859875de5c271f683d5b57bb9ec4911e44388f16 /src/libproc_macro/bridge | |
| parent | 434152157f9d73ad1899fb8da3a61aed6f8a46d6 (diff) | |
| download | rust-676d282dd3cd2dedba651e98c9a41af42983f08b.tar.gz rust-676d282dd3cd2dedba651e98c9a41af42983f08b.zip | |
Deny `unused_lifetimes` through rustbuild
Diffstat (limited to 'src/libproc_macro/bridge')
| -rw-r--r-- | src/libproc_macro/bridge/scoped_cell.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libproc_macro/bridge/scoped_cell.rs b/src/libproc_macro/bridge/scoped_cell.rs index 89fb7070015..2cde1f65adf 100644 --- a/src/libproc_macro/bridge/scoped_cell.rs +++ b/src/libproc_macro/bridge/scoped_cell.rs @@ -5,6 +5,7 @@ use std::mem; use std::ops::{Deref, DerefMut}; /// Type lambda application, with a lifetime. +#[allow(unused_lifetimes)] pub trait ApplyL<'a> { type Out; } |
