summaryrefslogtreecommitdiffhomepage
path: root/CompilerDriver/cc2/regression-tests/mixed-allcpp1-hello.cpp2
blob: d4aa9ded2965a7bbc247b4f0f9fad99810126ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

//  Step 1: rename .cpp to .cpp2

#include <iostream>
#include <string>

#pragma auto_inline(on)

//  Here's a sample Syntax 1 "Hello world"...

auto main() -> int
{
    auto s = std::string{"world\n"};
    std::cout << "Hello " << s;
}