12 lines · plain
1// RUN: mlir-opt %s -symbol-privatize=exclude="aap" | FileCheck %s2 3// CHECK-LABEL: module attributes {test.simple}4module attributes {test.simple} {5 // CHECK: func @aap6 func.func @aap() { return }7 8 // CHECK: func private @kat9 func.func @kat() { return }10}11 12