use of suite.jdk.gen.FunExprM.PrintlnFunExpr in project suite by stupidsing.
the class FunCreatorTest method testRunnable.
@Test
public void testRunnable() {
PrintlnFunExpr pfe = new PrintlnFunExpr();
pfe.expression = f.object(1).cast_(String.class);
FunCreator<Runnable> fc = FunCreator.of(Runnable.class);
fc.create(() -> pfe).apply(void_).run();
}
Aggregations