aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs160/pr223226/Test.java
blob: 354916dcb19568c5e30803f438f2a2801fd8e3b3 (plain)
1
2
3
4
5
6
7
8
9
public class Test 
{
        public static void main(String[] args)
        {
                Foo<BInterface<Integer>> foo = new Foo<BInterface<Integer>>();

                foo.doSomething(null);
        }
}