• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct S
2 {
3   int int_member;
4 };
5 
6 class C
7 {
8   int int_member;
9 };
10 
11 void
foo(S &)12 foo(S&)
13 {}
14 
15 void
bar(C &)16 bar(C&)
17 {}
18