Skip to content
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

num: have Num inherit from Clone #14212

Closed
wants to merge 1 commit into from
Closed

num: have Num inherit from Clone #14212

wants to merge 1 commit into from

Conversation

emberian
Copy link
Member

No description provided.

A numeric type which can't be cloned is nonsense. If this
weren't used for BigInt etc, it could even be Copy.
@emberian emberian changed the title rustdoc: functions in ffi blocks are unsafe num: have Num inherit from Clone May 14, 2014
@alexcrichton
Copy link
Member

I believe that this was reserved for Primitive, as opposed to Num (which appears to be intentional).

cc @bjz

@emberian
Copy link
Member Author

well I can see Primitive needing Copy, but I really feel like Clone should
just be there

On Wed, May 14, 2014 at 4:58 PM, Alex Crichton notifications@github.comwrote:

I believe that this was reserved for Primitive, as opposed by num (which
appears to be intentional).

cc @bjz https://github.com/bjz


Reply to this email directly or view it on GitHubhttps://github.com//pull/14212#issuecomment-43154842
.

http://octayn.net/

@brson
Copy link
Contributor

brson commented May 15, 2014

I'm not convinced that because all numbers are clonable, the trait that numbers implement should require numbers be clonable.

@emberian
Copy link
Member Author

Closing this. Isn't that important.

@emberian emberian closed this May 25, 2014
flip1995 pushed a commit to flip1995/rust that referenced this pull request Mar 20, 2025
…t-lang#14216)

The lint for function calls was previously restricted to functions
taking exactly one argument. This was not documented.

Generalizing the lint to an arbitrary number of arguments in the
function call requires special casing some macro expansions from the
standard library. Macros such as `panic!()` or `assert_eq!()` exist
since Rust 1.0.0, but modern stdlib expand those macros into calls to
functions introduced in later Rust versions. While it is desirable to
lint code inside macros, using MSRV-incompatible functions coming from
`core` in macro expansions has been special-cased to not trigger this
lint.

Also, code coming from compiler desugaring may contain function calls
(for example, `a..=b` is now desugared into `RangeInclusive::new(a, b)`.
Those should not be linted either as the compiler is allowed to use
unstable function calls.

Fix rust-lang#14212

changelog: [`incompatible_msrv`]: lint function calls with any argument
count
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants