summaryrefslogtreecommitdiffhomepage
path: root/CompilerDriver/cc2/regression-tests/mixed-postfix-expression-custom-formatting.cpp2
blob: 209c73d7c846408eb521c9e7b07d2b9faea5da20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

call: (_, _, _, _, _) = { }

test: (a:_) -> std::string = {
    return call( a,
        a.b(a.c)*++, "hello", /* polite
                          greeting
                          goes here */ " there",
        a.d.e( a.f*.g()++, // because f is foobar
              a.h.i(),
              a.j(a.k,a.l) )
        );
}

main: () -> int = { }