| // RUN: %check_clang_tidy %s modernize-loop-convert %t -- \ |
| // RUN: -config="{CheckOptions: [{key: modernize-loop-convert.NamingStyle, value: 'camelBack'}]}" \ |
| // RUN: -- -std=c++11 -I %S/Inputs/modernize-loop-convert |
| for (int i = 0; i < n; ++i) { |
| // CHECK-MESSAGES: :[[@LINE-3]]:3: warning: use range-based for loop instead [modernize-loop-convert] |
| // CHECK-FIXES: for (int i : arr) |
| // CHECK-FIXES-NEXT: printf("%d\n", i); |
| for (int i = 0; i < n; ++i) { |
| // CHECK-MESSAGES: :[[@LINE-3]]:3: warning: use range-based for loop instead |
| // CHECK-FIXES: for (int num : nums) |
| // CHECK-FIXES-NEXT: printf("%d\n", num); |
| for (int i = 0; i < n; ++i) { |
| printf("%d\n", nums[i] + num); |
| // CHECK-MESSAGES: :[[@LINE-3]]:3: warning: use range-based for loop instead |
| // CHECK-FIXES: for (int i : nums) |
| // CHECK-FIXES-NEXT: printf("%d\n", i + num); |