We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cacc3b4 commit ccdec0bCopy full SHA for ccdec0b
src/annotations/override.md
@@ -6,7 +6,7 @@ is an annotation.
6
There's not much else to say besides "hey, thats what that was!" but I think its
7
worth noting.
8
9
-```java
+```java,no_run
10
interface Num {
11
boolean odd();
12
src/annotations/target.md
@@ -7,7 +7,7 @@ The first of these "meta-annotations" you are likely to use is `@Target`.
By default an annotation can mark anything, but you can use `@Target` to
restrict what can be marked.[^typeuse]
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
13
0 commit comments