blob: d40c48e10ab0bc0587ae854476a6989ff42c24b5 [file] [log] [blame]
// RUN: mlir-opt %s -symbol-privatize=exclude="aap" | FileCheck %s
// CHECK-LABEL: module attributes {test.simple}
module attributes {test.simple} {
// CHECK: func @aap
func.func @aap() { return }
// CHECK: func private @kat
func.func @kat() { return }
}