comparison libmudflap/testsuite/libmudflap.c++/pass58-frag.cxx @ 0:a06113de4d67

first commit
author kent <kent@cr.ie.u-ryukyu.ac.jp>
date Fri, 17 Jul 2009 14:47:48 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a06113de4d67
1 // PR 19319
2 struct k {
3 int data;
4 k(int j): data(j) {}
5 };
6 k make_k () { return k(1); }
7
8 int main ()
9 {
10 k foo = make_k ();
11 return 0;
12 }