summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/decl1.C
blob: 6262bf307df709134abbf24cea111ae3666a9050 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do assemble  }
// Based on a test case by Phil Blecker <tmwg@inxservices.com>


int foo(int);
int bar() {
  int baz(int(foo(0)));
  int foo = baz;
  return 0;
}