Files
lombok/test/transform/resource/before/LoggerLog4j2.java
T
Reinier Zwitserloot a2ebb4ce36 [test] work in progress: Make test.javac6 pass all tests.
The `test.javac6` job causes a ton of errors because many tests use java8+ features. Marking them off as java8+ targeted only.
2021-03-13 04:20:47 +01:00

19 lines
345 B
Java

//version 8:
import lombok.extern.log4j.Log4j2;
@lombok.extern.log4j.Log4j2
class LoggerLog4j2 {
}
@Log4j2
class LoggerLog4j2WithImport {
}
@Log4j2(topic="DifferentName")
class LoggerLog4j2WithDifferentName {
}
@Log4j2(topic=LoggerLog4j2WithStaticField.TOPIC)
class LoggerLog4j2WithStaticField {
static final String TOPIC = "StaticField";
}