blob: 20d129683696fcbb56042b1f4e77a0f824aa52c6 [file] [log] [blame]
import org.checkerframework.framework.testchecker.testaccumulation.qual.*;
public class UseSimpleFluent {
static void req(@TestAccumulation({"a", "b"}) SimpleFluent s) {}
static void test() {
req(new SimpleFluent().a().b());
}
}