[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / libcxx / test / std / input.output / iostream.objects / wide.stream.objects / wcout.pass.cpp
blobb6bd1ef4ea18e83fce0c8f7eb5688eec3dd0975c
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 // XFAIL: libcpp-has-no-stdout
11 // <iostream>
13 // istream wcout;
15 #include <iostream>
17 #include "test_macros.h"
19 int main(int, char**)
21 #if 0
22 std::wcout << L"Hello World!\n";
23 #else
24 (void)std::wcout;
25 #endif
27 return 0;