]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/new_without_default.rs
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / new_without_default.rs
index 07d0a6bb05ebd19265e55e1fc93a58fed50a05da..dbc7d597b2c1fc8cdf0c557db5b0836b5f1a813d 100644 (file)
@@ -1,12 +1,3 @@
-// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 #![feature(const_fn)]
 #![allow(dead_code)]
 #![warn(clippy::new_without_default)]
@@ -131,9 +122,9 @@ pub unsafe fn new() -> Self {
 }
 
 #[derive(Default)]
-pub struct OptionRefWrapper<'a, T: 'a>(Option<&'a T>);
+pub struct OptionRefWrapper<'a, T>(Option<&'a T>);
 
-impl<'a, T: 'a> OptionRefWrapper<'a, T> {
+impl<'a, T> OptionRefWrapper<'a, T> {
     pub fn new() -> Self {
         OptionRefWrapper(None)
     }