diff options
| author | Bastian Köcher <git@kchr.de> | 2017-12-22 01:11:57 +0100 |
|---|---|---|
| committer | Bastian Köcher <git@kchr.de> | 2017-12-26 12:26:39 +0100 |
| commit | c7a57d285517f1e22d34ace98fbb0c64e40b12bc (patch) | |
| tree | 10d2643b4e5e8db44f46d77916dd899710b744f5 /src/libstd/lib.rs | |
| parent | 8f539b09df7f47c3b962c28179803ae0289bfe5e (diff) | |
| download | rust-c7a57d285517f1e22d34ace98fbb0c64e40b12bc.tar.gz rust-c7a57d285517f1e22d34ace98fbb0c64e40b12bc.zip | |
Adds termination_trait feature gate
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 3a7a57fe2b8..171c108e3aa 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -503,7 +503,7 @@ pub mod rt; // The trait to support returning arbitrary types in the main function mod termination; -#[unstable(feature = "termination_trait", issue = "0")] +#[unstable(feature = "termination_trait", issue = "43301")] pub use self::termination::Termination; // Include a number of private modules that exist solely to provide |
