Home | History | Annotate | Download | only in SemaCXX

Lines Matching refs:foo

4 struct foo {
7 foo() = default;
8 foo(const foo&) = default;
9 foo(foo&) = default;
10 foo& operator = (const foo&) = default;
11 foo& operator = (foo&) = default;
12 ~foo() = default;
31 // FIXME: static_assert(__is_trivial(foo), "foo should be trivial");
40 foo f, g(f);