2018-06-21 02:02:29 +02:00
|
|
|
/* This multi-line comment
|
|
|
|
should survive */
|
2018-03-10 20:44:05 +01:00
|
|
|
|
|
|
|
# This comment should survive
|
|
|
|
variable "foo" {
|
|
|
|
default = 1 // This comment should also survive
|
|
|
|
}
|
|
|
|
|
2018-06-21 02:02:29 +02:00
|
|
|
// These adjacent comments should remain adjacent
|
|
|
|
// to one another.
|
|
|
|
|
2018-03-10 20:44:05 +01:00
|
|
|
variable "bar" {
|
|
|
|
/* This comment should survive too */
|
|
|
|
description = "bar the baz"
|
|
|
|
}
|
|
|
|
|
|
|
|
// This comment that isn't attached to anything should survive.
|