aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-delombok/ToStringExplicitInclude.java
blob: e6b4c09a810e20a423fde0e164f24c5ada8034db (plain)
1
2
3
4
5
6
7
8
class ToStringExplicitInclude {
	int x;
	@java.lang.Override
	@java.lang.SuppressWarnings("all")
	public java.lang.String toString() {
		return "ToStringExplicitInclude()";
	}
}