blob: dc48912059c5c272dc697808f0fea3754da4df46 [file] [log] [blame]
// RUN: standalone-opt %s | standalone-opt | FileCheck %s
module {
// CHECK-LABEL: func @bar()
func @bar() {
%0 = arith.constant 1 : i32
// CHECK: %{{.*}} = standalone.foo %{{.*}} : i32
%res = standalone.foo %0 : i32
return
}
}