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