File: test016

package info (click to toggle)
pmccabe 2.8-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 876 kB
  • sloc: ansic: 3,084; cpp: 1,080; sh: 401; makefile: 42
file content (12 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
class Foo {
public:
  const struct XXX::XXX_Local_config *Get(void); /* this line caused an infinite loop looking for '{' */

  Foo() : configuration(NULL) {}

private:
  struct XXX::XXX_Local_config* configuration; /* this line caused an infinite loop looking for '{' */

  void after_potential_parsing_hang() { return; }
};