toml-rs/test-suite/tests/valid/comments-everywhere.toml

25 lines
457 B
TOML
Raw Normal View History

2014-06-20 19:01:38 -05:00
# Top comment.
# Top comment.
# Top comment.
# [no-extraneous-groups-please]
[group] # Comment
answer = 42 # Comment
# no-extraneous-keys-please = 999
2022-07-30 09:11:38 -05:00
# In between comment.
2014-06-20 19:01:38 -05:00
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.