X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Ftest%2Fui%2Fnested_impl_trait.rs;h=be2c21a7743ce1e9687c4cf425ab8f141e9cf88f;hb=2a663555ddf36f6b041445894a8c175cd1bc718c;hp=f6302c0f3b3e2f0e1b43fe00db886ae30a2e2bac;hpb=4ab2184312b2c6eb000b6f9f5311d26d42b32857;p=rust.git diff --git a/src/test/ui/nested_impl_trait.rs b/src/test/ui/nested_impl_trait.rs index f6302c0f3b3..be2c21a7743 100644 --- a/src/test/ui/nested_impl_trait.rs +++ b/src/test/ui/nested_impl_trait.rs @@ -1,14 +1,3 @@ -// Copyright 2017 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. -#![feature(conservative_impl_trait, universal_impl_trait)] - use std::fmt::Debug; fn fine(x: impl Into) -> impl Into { x }