-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Intrinsic docs don't render in rustdoc #19649
Comments
Uh, are you sure? The corresponding source code doesn't seem to have stability markers at all. Reexports would be a different story though. |
The copy_memory ones do. |
Ah, you are right. It seems that any extern fns (and not only |
To clarify: functions declared inside an pub extern { #[deprecated] fn foo(); } // missing stability marker
#[deprecated] pub extern fn foo() {} // has stability marker |
There is a FIXME related to this issue, |
remove FIXME(rust-lang#13101) since `assert_receiver_is_total_eq` stays. remove FIXME(rust-lang#19649) now that stability markers render. remove FIXME(rust-lang#13642) now the benchmarks were moved. remove FIXME(rust-lang#6220) now that floating points can be formatted. remove FIXME(rust-lang#18248) and write tests for `Rc<str>` and `Rc<[u8]>` remove reference to irelevent issues in FIXME(rust-lang#1697, rust-lang#2178...) update FIXME(rust-lang#5516) to point to getopts issue 7 update FIXME(rust-lang#7771) to point to RFC 628 update FIXME(rust-lang#19839) to point to issue 26925
This may be a duplicate, but can't find the original if it exists.
See http://doc.rust-lang.org/core/intrinsics/index.html for the problem. Most of the intrinsics are doc'd with stability markers, but none of that shows up. Docs also consequently don't show up in re-exports.
The text was updated successfully, but these errors were encountered: