summaryrefslogtreecommitdiff
path: root/gcc/testsuite/treelang/compile/tabs.tree
blob: 6294c15c49ab565580a41b7e91f8ef993ef163d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
// { dg-do compile }
external_definition int main(int argc);

main {
	automatic int v1;
	automatic int v2;
	v1 = argc;
	v2 = 3;

        return v2;
}