blob: d4708224e1f1c42e9f87d34dbe994c8e43a5016a [file] [log] [blame]
class StringCategory {
static String getMd5(String s) {
return "MD5Value";//suppose to be some code that generate md5
}
}
class StringCategory2 {
static String getMd52(String s) {
return "MD5Value";
}
}
use(StringCategory, StringCategory2) {
println "hello world".getMd<caret>
}