[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / SemaCXX / defaulted-ctor-loop.cpp
blobbc8dfdaa3cf2976eeccca618e225e78b9b03678f
1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
3 // WARNING: This test may recurse infinitely if failing.
5 struct foo;
6 struct bar {
7 bar(foo&);
8 };
9 struct foo {
10 bar b;
11 foo()
12 : b(b) // expected-warning{{field 'b' is uninitialized}}