1 #include "TestInterfaces.h"
2 
3 using namespace mlir;
4 
5 bool mlir::TestEffects::Effect::classof(
6     const mlir::SideEffects::Effect *effect) {
7   return isa<mlir::TestEffects::Concrete>(effect);
8 }
9