]> git.lizzy.rs Git - rust.git/blobdiff - src/test/rustdoc/edition-flag.rs
Rollup merge of #66431 - Aaron1011:fix/opaque-type-infer, r=varkor
[rust.git] / src / test / rustdoc / edition-flag.rs
index 3475b657d2599930cb2e3e465d25536ed106750b..e54c7d2969bfe72729a5fb8c8e0c3ab23569ad29 100644 (file)
@@ -1,20 +1,7 @@
-// Copyright 2018 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.
-
-// compile-flags:--test -Z unstable-options
+// compile-flags:--test
 // edition:2018
 
-#![feature(async_await)]
-
 /// ```rust
-/// #![feature(async_await)]
 /// fn main() {
 ///     let _ = async { };
 /// }