1 // See https://github.com/rust-lang/rust/issues/47995: we cannot use `#![...]` attributes inside of
2 // the generated ISLE source below because we include!() it. We must include!() it because its path
3 // depends on an environment variable; and also because of this, we can't do the `#[path = "..."]
4 // mod generated_code;` trick either.
5 #![expect(
6     missing_docs,
7     dead_code,
8     unreachable_patterns,
9     unused_imports,
10     unused_variables,
11     irrefutable_let_patterns,
12     clippy::clone_on_copy,
13     reason = "generated code"
14 )]
15 
16 include!(concat!(env!("ISLE_DIR"), "/isle_aarch64.rs"));
17