blob: 9c4f0e543ce3ee226c59c869c5bc96fcf51023e0 [file] [log] [blame]
// 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);
}
}