blob: ffbf1e420d4643c242efc81c57d7f483912170d6 [file] [log] [blame]
class StringCategory {
static String lower(String string) {
return string.toLowerCase()
}
def doSmth() {
use(StringCategory) {
<begin>println "TeSt".lower()<end>
}
}
}
-----
Reference '"TeSt".lower' will not be resolved outside of current context