mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 06:11:42 +07:00
distinguish raw types from non-raw (IDEA-92842)
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<problems/>
|
||||
@@ -0,0 +1,10 @@
|
||||
class Test {
|
||||
{
|
||||
class TypedQuery<T> {}
|
||||
class TemporalDataDTO<K> {}
|
||||
class FOLDER_ID {}
|
||||
|
||||
TypedQuery<TemporalDataDTO> h = null;
|
||||
TypedQuery<TemporalDataDTO<FOLDER_ID>> typedQuery = (TypedQuery<TemporalDataDTO<FOLDER_ID>>) (TypedQuery<?>)h;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user