aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/src/test/resources/playground/workload/src/main/java/com/example/BClass.java
blob: fcfbcbcf32ef8e0c747380e5bcedafaa207515c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.example;

import com.example.annotation.Builder;
import hello.HELLO;
import java.util.List;

@Builder
public class BClass {
    public HELLO hello;
    public HELLO helloFun(){
        return null;
    }
    public List<HELLO> list = null;
}