aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/gcov/gcov-23-1.h
blob: ae38cad4c278cde8331e3eb585d9e5cd1086945f (plain)
1
2
3
4
5
6
7
8
9
#include <string>
struct fst {
  static fst& instance ()
  {
    static fst self;
    return self;
  }
  std::string data;
};