view gcc/testsuite/g++.dg/gcov/pr88263.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents
children
line wrap: on
line source

// PR gcov-profile/88263
// { dg-options "-fprofile-arcs -ftest-coverage -std=c++11" }
// { dg-do run { target native } }

#include <sstream>

namespace logging {

class Logstream {
public:

private:
    /// The logging stream
    static thread_local std::ostringstream os_;
};

}

namespace logging {

thread_local std::ostringstream Logstream::os_;

}

int main()
{
  return 0;
}

// { dg-final { run-gcov pr88263.C } }