Last active
March 1, 2022 00:44
-
-
Save takahirom/394c902663e1a16be7a6c4e79316ed15 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RequiresOptIn(message = "AmazingFeature should be checked") | |
@Retention(AnnotationRetention.BINARY) | |
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY) | |
annotation class AmazingFeature | |
@AmazingFeature | |
fun brokenAmazingFeature() { | |
TODO("aaaaa") | |
} | |
class HogeActivity { | |
fun onClick() { | |
brokenAmazingFeature() // Compile-time errors will be displayed!!! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment