aboutsummaryrefslogtreecommitdiffstats
path: root/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/src/my/pkg/Test.java.txt
blob: 3905b8c68a04816274baa54d275b55fa8769c736 (plain)
1
2
3
4
5
6
7
8
9
10
package my.pgk;

class Test {
   private static String s = " R.id.button1 \" "; // R.id.button1 should not be considered referenced
   static {
       System.out.println(R.id.button2);
       char c = '"';
       System.out.println(R.id.linearLayout1);
   }
}