Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 543ff333b587e2e6fcd39df3b8cfbbb901c3061b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package p;

import static java.util.Arrays.asList;

import java.util.List;

public class A {
	public List<String> abc(B b) {
		return asList("a", b.toString());
	}
}

Back to the top