-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
rustc panicked with a simple code #107991
Comments
Probably another case of #83085 |
Can't reproduce with rustc 1.68 nor nightly
@rustbot label +S-bug-has-mcve |
This still reproduces with |
Thanks @matthiaskrgr, I was able to reproduce with those flags. Minimized with mod bytes_num {
use std::{error::Error, time::Duration};
const MINUTE_CHARS: &[char] = &['m'];
const NANOSECOND: u64 = 1;
const MICROSECOND: u64 = NANOSECOND * 1000;
const MILLISECOND: u64 = MICROSECOND * 1000;
const SECOND: u64 = MILLISECOND * 1000;
const MINUTE: u64 = SECOND * 60;
fn foo(bar: &str) -> Result<Duration, Box<Error>> {
let u = [].as_slice();
let unit = match u {
MINUTE_CHARS => MINUTE,
_ => return Err(From::from(format!("Unknown Unit '{:?}' in '{}'", u, bar))),
};
Ok(Duration::from_secs(1))
}
}
mod duration {
use std::error::Error;
const MEBIBYTES_SHORT: &[char] = &['m'];
const BYTES: u64 = 1;
const KIBIBYTES: u64 = BYTES * 1024;
const MEBIBYTES: u64 = KIBIBYTES * 1024;
fn baz() -> Result<u64, Box<Error>> {
let u = [].as_slice();
let unit = match u {
MEBIBYTES_SHORT => MEBIBYTES,
};
Ok(1)
}
}
fn main() {} |
I'm unable to reproduce it with rustc 1.77.0-nightly (d5fd099 2024-01-22). |
Code
Meta
rustc --version --verbose
:Error output
Backtrace
The text was updated successfully, but these errors were encountered: