Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/advHighlighting/a54.java
T
2010-06-25 12:46:38 +04:00

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 {}