xref: /aosp_15_r20/external/kotlinx.serialization/guide/example/example-json-22.kt (revision 57b5a4a64c534cf7f27ac9427ceab07f3d8ed3d8)
1 // This file was automatically generated from json.md by Knit tool. Do not edit.
2 package example.exampleJson22
3 
4 import kotlinx.serialization.*
5 import kotlinx.serialization.json.*
6 
mainnull7 fun main() {
8     // caution: creating null with JsonUnquotedLiteral will cause an exception!
9     JsonUnquotedLiteral("null")
10 }
11