1bede1f5e0
This commit replaces nearly all remaining uses of #fmt, #debug, #error, and #info, and fixes some error messages...
7 lines
140 B
Rust
7 lines
140 B
Rust
// error-pattern:only valid in signed fmt! conversion
|
|
|
|
fn main() {
|
|
// Can't use a space on unsigned conversions
|
|
fmt!("% u", 10u);
|
|
}
|