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 //===----------------------------------------------------------------------===// 8 9 // <iostream> 10 11 // istream wclog; 12 13 // FILE_DEPENDENCIES: ../check-stderr.sh 14 // RUN: %{build} 15 // RUN: %{exec} bash check-stderr.sh "%t.exe" "1234" 16 17 #include <iostream> 18 19 int main(int, char**) { 20 std::wclog << L"1234"; 21 return 0; 22 } 23