summaryrefslogtreecommitdiff
path: root/libstdc++-v3/testsuite/experimental/filesystem/path/construct/100630.cc
blob: b2428ff74cf504acb7a302c2210239b7cd18774b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do compile { target c++11 } }
// { dg-require-filesystem-ts "" }

#include <experimental/filesystem>

void f(bool) { }
void f(const std::experimental::filesystem::path&) { }

void
test_100630()
{
  volatile bool b = true;
  f(b);
}