File tree Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change 1
1
#![ feature(
2
2
negative_impls, // !Send is much cleaner than `PhantomData<Rc>`
3
3
untagged_unions, // I want to avoid ManuallyDrop in unions
4
- const_fn, // Apparently this feature is unstable???
5
4
const_fn_trait_bound, // So generics + const fn are unstable, huh?
6
5
) ]
7
6
#![ cfg_attr( not( feature = "std" ) , no_std) ]
Original file line number Diff line number Diff line change 5
5
negative_impls, // impl !Send is much cleaner than PhantomData<Rc<()>>
6
6
exhaustive_patterns, // Allow exhaustive matching against never
7
7
const_alloc_layout, // Used for StaticType
8
- const_fn, // We statically create type info
9
8
const_panic, // Const panic should be stable
10
9
untagged_unions, // Why isn't this stable?
11
10
new_uninit, // Until Rust has const generics, this is how we init arrays..
You can’t perform that action at this time.
0 commit comments