1// RUN: mlir-opt %s -verify-diagnostics -pass-pipeline='builtin.module(func.func(test-interface-pass))' -o /dev/null
2
3// Test that we run the interface pass on the function.
4
5// expected-remark@below {{Executing interface pass on operation}}
6func.func @main() {
7 return
8}
9