mirror of
https://github.com/cincheo/jsweet.git
synced 2025-12-15 15:29:22 +00:00
15 lines
185 B
Java
15 lines
185 B
Java
package source.ambient;
|
|
|
|
import jsweet.lang.Ambient;
|
|
|
|
public class WrongUseOfAmbientAnnotations {
|
|
|
|
@Ambient
|
|
public void m() {
|
|
}
|
|
|
|
@Ambient
|
|
public static String v;
|
|
|
|
}
|