mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
bf66723c0e
Also remove a note that I don't consider to be very useful in context.
11 lines
218 B
Rust
11 lines
218 B
Rust
#![feature(rustc_attrs)]
|
|
|
|
#[derive(Debug)]
|
|
#[rustc_layout_scalar_valid_range_start(2)]
|
|
struct NonZeroAndOneU8(u8);
|
|
|
|
fn main() {
|
|
let x: fn(u8) -> NonZeroAndOneU8 = NonZeroAndOneU8;
|
|
//~^ ERROR mismatched types
|
|
}
|