aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs152/pr147801/readme.txt
blob: 28e5daad5bfdcd1bf4c7bf2ecf715a3e54ab2a6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
to rebuild foo.jar:


Build Foo.java - it includes a definition of PreparedStatement with no method specified

mkdir out
javac -d out Foo.java

Build a new PreparedStatement that includes the method

javac -d out PreparedStatement.java

Build the jar

cd out
jar -cvMf ../foo.jar *

You now have a jar where the Foo.class contains an invalid override...