Я пытаюсь создать скрипт Groovy на основе этого примера: Создание классов в скрипте Groovy
Но в итоге я получил эту ошибку:
One of the classes is an explicit generated class using the class statement, the other is a class generated from the script body based on the file name. Solutions are to change the file name or to change the class name.
Вот как я создал свой класс:
class Test {
static void greet() {
}
}
Test.greet()
Я использовал для непосредственного вызова метода при создании скрипта Groovy, например:
test()
public void test() {
}