summaryrefslogtreecommitdiff
path: root/test/Import/array-init-loop-expr/Inputs/S.cpp
blob: 5ca3ad47b278ff993cccdb8be090e602c43cc17a (plain)
1
2
3
4
5
6
7
8
class S {
  int a[10];
};

void f() {
  S s;
  S copy = s;
}