mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
18 lines
227 B
Rust
18 lines
227 B
Rust
//
|
|
|
|
// Very
|
|
|
|
// sensitive
|
|
pub struct BytePos(pub u32);
|
|
|
|
// to particular
|
|
|
|
// line numberings / offsets
|
|
|
|
fn main() {
|
|
let x = BytePos(1);
|
|
|
|
assert!(x, x);
|
|
//~^ ERROR cannot apply unary operator `!` to type `BytePos`
|
|
}
|