mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
8 lines
148 B
Java
8 lines
148 B
Java
// "Replace explicit type with 'var'" "true-preview"
|
|
class Main {
|
|
{
|
|
var str = m("hello, world");
|
|
}
|
|
|
|
static <T> T m(T t) {return t;}
|
|
} |