blob: bc8dfdaa3cf2976eeccca618e225e78b9b03678f [file] [log] [blame]
Richard Smith762bb9d2011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
Sean Hunt71a682f2011-05-18 03:41:58 +00002
3// WARNING: This test may recurse infinitely if failing.
4
5struct foo;
6struct bar {
7 bar(foo&);
8};
9struct foo {
10 bar b;
11 foo()
Hans Wennborg7821e072012-09-21 08:58:33 +000012 : b(b) // expected-warning{{field 'b' is uninitialized}}
Sean Hunt71a682f2011-05-18 03:41:58 +000013 {}
14};