1 // RUN: mlir-opt %s -test-pdll-pass | FileCheck %s
3 // CHECK-LABEL: func @simpleTest
4 func.func @simpleTest() {
6 "test.simple"() : () -> ()
10 // CHECK-LABEL: func @testImportedInterface
11 func.func @testImportedInterface() -> i1 {
12 // CHECK: test.non_cast
13 // CHECK: test.success
14 "test.non_cast"() : () -> ()
15 %value = "builtin.unrealized_conversion_cast"() : () -> (i1)