blob: e1238c3f904aaa8410b2b63df27b0c62bd154a5b [file] [log] [blame]
// PR c++/102548
// { dg-do compile { target { c++14 && ia32 } } }
typedef decltype(sizeof(0)) size_t;
struct tm;
extern "C" size_t __attribute__((__cdecl__)) strftime (char *, size_t, const char *, const struct tm *);
auto
foo (void)
{
return strftime;
}