mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
raw string literals: string assignability (IDEA-189075)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class Test {
|
||||
void m(String s) {}
|
||||
<T> void n(T s) {}
|
||||
{
|
||||
String s = ``abc``;
|
||||
m(`abc`);
|
||||
n(`abc`);
|
||||
String[] array = {``abc``};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user