]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/nll/relate_tys/var-appears-twice.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / nll / relate_tys / var-appears-twice.rs
index 02b3006c5315c49158668d0f9b49f1abeef88d73..77129f4468f047a3f89be10302a52bfa42c838e1 100644 (file)
@@ -1,20 +1,7 @@
-// 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 <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.
-
 // Test that the NLL `relate_tys` code correctly deduces that a
 // function returning always its first argument can be upcast to one
 // that returns either first or second argument.
 
-#![feature(nll)]
-#![allow(warnings)]
-
 use std::cell::Cell;
 
 type DoubleCell<A> = Cell<(A, A)>;