Home
last modified time | relevance | path

Searched refs:SubFoo (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/test/SemaCXX/
H A Ddesignated-initializers.cpp5 struct SubFoo { struct
10 static void Test() { SubFoo sf = {.bar1 = 10, .bar2 = 20}; } // Expected no warning in Test()
20 struct SubFoo { struct
25 …static void Test() { SubFoo sf = {.bar1 = 10, // expected-note 2 {{previous initialization is h… in Test()
/llvm-project-15.0.7/clang/test/SemaObjC/
H A Dprotocol-lookup-2.m20 @interface SubFoo : Foo interface
24 @implementation SubFoo implementation