1// RUN: mlir-opt %s -split-input-file -canonicalize | FileCheck %s2 3// CHECK-NOT: async.execute4 5func.func @empty_execute() {6 %token = async.execute {7 async.yield8 }9 return10}11