summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/cpp11-migrate/HeaderReplacements/common.cpp
blob: 9c4f0e543ce3ee226c59c869c5bc96fcf51023e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// This is just a dummy run command to keep lit happy. Tests for this file are
// in main.cpp
// RUN: true

#include "common.h"

void func1(int &I) {
}

void func2() {
  container C1;
  container C2;
  for (container::iterator I = C1.begin(), E = C1.end(); I != E; ++I) {
    C2.push_back(*I);
  }
}
OpenPOWER on IntegriCloud