blob: d549e5b12a9496b838268e7bb1647da17bbef79a [file] [log] [blame]
package example
import groovy.transform.CompileStatic
@CompileStatic
class ClassUsingAService {
TestService testService
void doSomethingWithTheService() {
testService.testDataService(1l)
}
}