aboutsummaryrefslogtreecommitdiff
path: root/test/profile/Inputs/instrprof-gcov-exceptions.cpp
blob: 327966551d097dcb1f0e6a98ca92a5f82f5e7979 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#include <string>

void asd(std::string i) {
}

int main(void)
{
  asd("22");

  return 0;
}