[clang-tidy][NFC]remove deps of clang in clang tidy test (#116588)
[llvm-project.git] / mlir / test / IR / print-empty-attr-or-type.mlir
blob836467d6786a5441ed2e13bf99f1678e444da6d8
1 // RUN: mlir-opt %s | mlir-opt | FileCheck %s
3 func.func @test(%arg0 : !test.optional_value_type, %arg1 : !test.optional_value_type<3>) {
4   // CHECK: test.format_maybe_empty_type %{{.*}} : !test.optional_value_type
5   test.format_maybe_empty_type %arg0 : !test.optional_value_type
6   // CHECK: test.format_maybe_empty_type %{{.*}} : <3>
7   test.format_maybe_empty_type %arg1 : !test.optional_value_type<3>
8   return