-
Notifications
You must be signed in to change notification settings - Fork 13.3k
'rustc --pretty typed' fails for hello world #4264
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
Comments
If you want me to do some work to get more debugging info I'm willing to do this. |
I get the same thing with rustc 0.5. |
I wouldn't be surprised if |
reproduced on 2013-03-22 |
non-critical for 0.6, de-milestoning |
Reproduced with 0252c30 -- nominating for milestone 5, production-ready |
just a bug, removing milestone/nomination. |
This still fails, but not with an ICE. It just... doesn't print anything. |
Still fails with |
@thestinger that's because of #7754 (new formatting uses fixed-size vectors, which is where the problem really is). |
visiting for triage. Errors with this stack trace:
|
As documented in #7754, the problem here is a written type that includes an integral expression. Trivial reproduction case: fn main() {
let _: [(), ..1u] = [()];
} As @chris-morgan mentioned earlier, this is causing a problem with |
(edited to update syntax)
Command is
Code is (hello.rs)
Stack trace(some debugging info but not all)
Compiler is the latest development version from the repos here.
System is linux x86_64 Ubuntu 12.04
gcc: gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
The text was updated successfully, but these errors were encountered: