summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lto/20091026-1_1.C
blob: 28816100e290077e05245a0600ea41936221f418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "20091026-1_a.h"
extern cHead networks;
class cNetworkType;
inline cNetworkType *findNetwork(const char *s)
{
  return (cNetworkType *)networks.find(s);
}
int run(const char *opt_network_name)
{
  cNetworkType *network = findNetwork(opt_network_name);
  if (!network)
    throw 1;
}