Created
February 17, 2026 01:14
-
-
Save skydoves/28797f11784cb344907e88a7767d4962 to your computer and use it in GitHub Desktop.
Decompiled Value Class - Java Bytecode
This file contains hidden or 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
| public final class IdKt { | |
| // The function takes the PRIMITIVE type directly | |
| public static final void processId(String userId) { | |
| String var1 = "Processing user with ID: " + userId; | |
| System.out.println(var1); | |
| } | |
| public static final void main() { | |
| // No UserId object allocated | |
| String myId = UserId.constructor_impl("user-123"); | |
| processId(myId); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment