aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/WithByOnRecordComponent.java
blob: 5af506255a790a85278a34bacf414241069ed747 (plain)
1
2
3
4
5
6
record WithByOnRecordComponent(String a, String b) {
	@java.lang.SuppressWarnings("all")
	public WithByOnRecordComponent withABy(final java.util.function.Function<? super String, ? extends String> transformer) {
		return new WithByOnRecordComponent(transformer.apply(this.a), this.b);
	}
}