15 lines · plain
1// UNSUPPORTED: system-windows2// RUN: mlir-opt %s --load-dialect-plugin=%standalone_libs/StandalonePlugin%shlibext --pass-pipeline="builtin.module(standalone-switch-bar-foo)" | FileCheck %s3 4module {5 // CHECK-LABEL: func @foo()6 func.func @bar() {7 return8 }9 10 // CHECK-LABEL: func @standalone_types(%arg0: !standalone.custom<"10">)11 func.func @standalone_types(%arg0: !standalone.custom<"10">) {12 return13 }14}15