diff options
| author | petrochenkov <vadim.petrochenkov@gmail.com> | 2016-07-08 13:35:17 +0300 |
|---|---|---|
| committer | petrochenkov <vadim.petrochenkov@gmail.com> | 2016-07-08 13:35:17 +0300 |
| commit | d27e55c5d81eaee11ff2d414793cb7278d58d578 (patch) | |
| tree | 3bbc035f54cdc0e4728c26582306f24956a77a2f /src/libcore | |
| parent | 390b639e59adbb35b491f3080a07ba7b2ed84072 (diff) | |
| download | rust-d27e55c5d81eaee11ff2d414793cb7278d58d578.tar.gz rust-d27e55c5d81eaee11ff2d414793cb7278d58d578.zip | |
Stabilize `FnOnce::Output` + Fix rebase
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/ops.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/ops.rs b/src/libcore/ops.rs index 7753aae147a..9347ac2a8c8 100644 --- a/src/libcore/ops.rs +++ b/src/libcore/ops.rs @@ -1929,7 +1929,7 @@ pub trait FnMut<Args> : FnOnce<Args> { #[fundamental] // so that regex can rely that `&str: !FnMut` pub trait FnOnce<Args> { /// The returned type after the call operator is used. - #[unstable(feature = "fn_traits", issue = "29625")] + #[stable(feature = "fn_once_output", since = "1.12.0")] type Output; /// This is called when the call operator is used. |
