Bug 1846030 [wpt PR 41229] - CloseWatcher: factor out and expand Esc key tests, a...
[gecko.git] / tools / clang-tidy / test / modernize-use-auto.cpp
blobba54d0cb8a25e9f53f70f0d683dad74ad6db3295
1 #include <vector>
3 void func() {
4 int val = 42;
5 std::vector<int> my_container;
6 for (std::vector<int>::iterator I = my_container.begin(),
7 E = my_container.end();
8 I != E;
9 ++I) {