mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
649b391de6
llvm-svn: 113972
10 lines
209 B
Plaintext
10 lines
209 B
Plaintext
// Test that the -x option works for files with unknown suffixes.
|
|
// RUN: llvmc -x c++ %s -o %t
|
|
// RUN: %abs_tmp | grep hello
|
|
// XFAIL: vg
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << "hello" << '\n';
|
|
}
|