mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-31 20:12:53 +07:00
12 lines
325 B
Java
12 lines
325 B
Java
// single import conflict
|
|
import java.sql.Date;
|
|
<error descr="'java.sql.Date' is already defined in a single-type import">import java.util.Date;</error>
|
|
import java.sql.*;
|
|
import java.util.*;
|
|
// multiple single-type import of the same class is fine
|
|
import java.io.IOException;
|
|
import java.io.IOException;
|
|
|
|
|
|
public class c {}
|