1 package org.apache.commons.javaflow.bytecode.transformation.rewrite;
2
3 import org.apache.commons.javaflow.Continuation;
4
5
6 public final class NoReference implements Runnable {
7
8 public void run() {
9 new Object();
10 Continuation.suspend();
11 }
12
13 }