This commit is contained in:
Jesus Rubio 2021-02-06 19:45:43 +01:00
parent 777582228c
commit ac6c09a980

View File

@ -19,10 +19,10 @@ To fix the issue you need to provide the `feature` field.
#![feature(staged_api)] #![feature(staged_api)]
#![stable(since = "1.0.0", feature = "test")] #![stable(since = "1.0.0", feature = "test")]
#[unstable(feature = "unstable_fn", issue = "none")] // ok!! #[unstable(feature = "unstable_fn", issue = "none")] // ok!
fn unstable_fn() {} fn unstable_fn() {}
#[stable(feature = "stable_fn", since = "1.0.0")] // ok!! #[stable(feature = "stable_fn", since = "1.0.0")] // ok!
fn stable_fn() {} fn stable_fn() {}
``` ```