mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
14 lines
238 B
Rust
14 lines
238 B
Rust
// check-pass
|
|
// edition:2018
|
|
// aux-build:anon-params-edition-hygiene.rs
|
|
|
|
// This warning is still surfaced
|
|
#![allow(anonymous_parameters)]
|
|
|
|
#[macro_use]
|
|
extern crate anon_params_edition_hygiene;
|
|
|
|
generate_trait_2015!(u8);
|
|
|
|
fn main() {}
|