rust/src/test/compile-fail/unsupported-cast.rs

9 lines
137 B
Rust
Raw Normal View History

2011-10-27 09:14:13 -07:00
// error-pattern:unsupported cast
use std;
import std::os;
fn main() {
2012-02-01 11:45:23 +01:00
log(debug, 1.0 as os::FILE); // Can't cast float to native.
2011-10-27 09:14:13 -07:00
}