Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 06a2f69388da6bbcfc7558bb9f0d7591e02114bf (plain) (blame)
1
2
3
4
5
6
7
8
package test0022;

public class Test {
	X var;
	void foo(Y t, A<Y> a, A<Y>.B b, A<Y>.C<Y> c, A<Y>.B.D<Y> d) {
		var.add(t,a,b,c,d);
	}
}

Back to the top