[flang][cuda] Do not register global constants (#118582)
[llvm-project.git] / mlir / test / mlir-tblgen / deprecation.td
blobb6e6d6548f7a50795c840feacf8ab67b01c3a57e
1 // RUN: not mlir-tblgen -on-deprecated=error -gen-op-decls -I %S/../../include -DERROR1 %s 2>&1 | FileCheck --check-prefix=ERROR1 %s
3 include "mlir/IR/OpBase.td"
5 def Test_Dialect : Dialect {
6   let name = "test_dialect";
9 #ifdef ERROR1
10 def OpTraitA : NativeOpTrait<"OpTraitA">, Deprecated<"use `bar` instead">;
12 // ERROR1: warning: Using deprecated def `OpTraitA`
13 // ERROR1: use `bar` instead
14 def OpTraitWithoutDependentTrait : Op<Test_Dialect, "default_value", [OpTraitA]> {}
15 #endif