toml-rs/test-suite/tests/valid/comments-everywhere.toml
Kian-Meng Ang 3d3d63aa8e Fix typos
2022-07-30 22:11:38 +08:00

25 lines
457 B
TOML

# Top comment.
# Top comment.
# Top comment.
# [no-extraneous-groups-please]
[group] # Comment
answer = 42 # Comment
# no-extraneous-keys-please = 999
# In between comment.
more = [ # Comment
# What about multiple # comments?
# Can you handle it?
#
# Evil.
# Evil.
42, 42, # Comments within arrays are fun.
# What about multiple # comments?
# Can you handle it?
#
# Evil.
# Evil.
# ] Did I fool you?
] # Hopefully not.