aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ConstructorInner.java
blob: fb0852dcbacf522592e6abefb053d8d107ed6229 (plain)
1
2
3
4
5
6
7
8
9
10
11
class ConstructorInner {
	static class Inner {
		@java.lang.SuppressWarnings("all")
		private Inner() {
		}
		@java.lang.SuppressWarnings("all")
		public static ConstructorInner.Inner of() {
			return new ConstructorInner.Inner();
		}
	}
}