mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-14 16:03:17 +00:00
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
|
|
}
|