blob: fe6e706c3dcdf1edac14a1e30f9d7fff0c0572b4 [file] [log] [blame]
class Example {
String message
static Example createDefault() {
Example entity = new Example()
entity.with {
print mes<ref>sage // "NOT recognized"
}
return entity
}
}