blob: 027abf3bd65e5ef1b55e91d98ac1f3c4704f8675 [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>
}