aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/bridge/src/sbt-test/source-dependencies/inherited-deps-java/B.java
blob: 6b54edc7def20cd29fd15de9c11bbdc49bb11f5c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
public class B {
	static interface T<X> extends C {}

	// not public, so this shouldn't be tracked as an inherited dependency
	private class Q implements E<Integer> {}

	public void x(int i) {
		// not public, not an inherited dependency
		D j = new D() {};
	}
}