summaryrefslogtreecommitdiffstats
path: root/tests/bugs/deprecated/Deprecation.java
blob: 66fb11226f20029bc82cb34879753a7f5fd1d2f5 (plain)
1
2
3
4
5
6
7
8
// bug 54098

public class Deprecation {
    public static void main(String[] args) {
        Deprecated dep = new Deprecated();
        dep.bar();
    }
}