Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Address newly added feature gates #692

Merged
merged 1 commit into from
Mar 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ices/53092.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#![feature(const_fn)]
#![feature(const_fn_union)]
#![feature(impl_trait_in_bindings)]
#![feature(min_type_alias_impl_trait)]
#![feature(type_alias_impl_trait)]
#![feature(untagged_unions)]

Expand Down
1 change: 1 addition & 0 deletions ices/74280.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![feature(min_type_alias_impl_trait)]
#![feature(type_alias_impl_trait)]

type Test = impl Copy;
Expand Down
1 change: 1 addition & 0 deletions ices/77987.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![feature(min_type_alias_impl_trait)]
#![feature(type_alias_impl_trait)]

trait Foo<T> {}
Expand Down
1 change: 1 addition & 0 deletions ices/78450.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![feature(min_type_alias_impl_trait)]
#![feature(type_alias_impl_trait)]
#![no_std]
#![crate_type = "lib"]
Expand Down