Files
rust/tests/ui/feature-gates/feature-gate-autodiff.rs
Marcelo Domínguez 8dd62e8188 Update UI tests
2025-05-21 07:24:43 +00:00

13 lines
395 B
Rust

//@ revisions: has_support no_support
//@[no_support] ignore-enzyme
//@[has_support] needs-enzyme
#![crate_type = "lib"]
// This checks that without the autodiff feature enabled, we can't use it.
#[autodiff_reverse(dfoo)]
//[has_support]~^ ERROR cannot find attribute `autodiff_reverse` in this scope
//[no_support]~^^ ERROR cannot find attribute `autodiff_reverse` in this scope
fn foo() {}