summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/input.output/iostream.objects/narrow.stream.objects/clog.pass.cpp
blob: 3812b203ae04fe735438106132782c9eeb25162b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// <iostream>

// istream clog;

#include <iostream>

int main()
{
#if 0
    std::clog << "Hello World!\n";
#else
    (void)std::clog;
#endif
}
OpenPOWER on IntegriCloud