blob: 886508ee2f9506a9021f0c93c0b0f1ecb47f2f0b (
plain)
1
2
3
4
5
6
7
8
|
# NOTE: Changing lines in here changes the test results since the first
# instance shouldn't warn, but the second should and they have the same message
# A warning should NOT ne issued for this line:
set(UNUSED_VARIABLE)
# Warning should occur here:
set(UNUSED_VARIABLE)
message(STATUS "${UNUSED_VARIABLE}")
|