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

internal compile error when using core::num::Float::sqrt #14281

Closed
Pytheas01 opened this issue May 18, 2014 · 1 comment
Closed

internal compile error when using core::num::Float::sqrt #14281

Pytheas01 opened this issue May 18, 2014 · 1 comment

Comments

@Pytheas01
Copy link

Rust version: 0.11
Platform: MacosX Mavericks
Error Message:

rustc src/pointer7.rs
ERROR:serialize::ebml::reader: failed to find block with tag 7
error: internal compiler error: unexpected failure
note: the compiler hit an unexpected failure path. this is a bug.
note: we would appreciate a bug report: http://static.rust-lang.org/doc/master/complement-bugreport.html
note: run with RUST_BACKTRACE=1 for a backtrace
task 'rustc' failed at 'explicit failure', /Users/rustbuild/src/rust-buildbot/slave/nightly-mac/build/src/libserialize/ebml.rs:227


Program:

extern crate core;
use std::rc::Rc;
struct Point {x: f64, y: f64}

fn compute_distance(p1: Rc, p2: Rc) -> f64 {
let x_d = p1.x - p2.x;
let y_d = p1.y - p2.y;
::core::num::Float::sqrt(x_d * x_d + y_d * y_d)
}

fn main() {

println!("{}", 
    compute_distance(
    Rc::new(Point {x: 1.0, y: 2.0}),
    Rc::new(Point {x: 3.0, y: 4.0})));

}

@alexcrichton
Copy link
Member

Closing as a dupe of #12919

bors added a commit to rust-lang-ci/rust that referenced this issue Mar 20, 2023
feat: add an autofix for inserting an unsafe block to missing unsafe diagnostic

close rust-lang#14241
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

No branches or pull requests

2 participants