Lines Matching defs:T7

515 struct T7 {};
517 CommonTypeNoMetaCommonReference(T7);
522 struct std::common_type<T7, int> {
527 struct std::common_type<int, T7> {
532 struct std::common_type<T7&, int&> {
537 struct std::common_type<int&, T7&> {
542 struct std::common_type<T7&, const int&> {
547 struct std::common_type<int&, const T7&> {
552 struct std::common_type<T7&, volatile int&> {
557 struct std::common_type<int&, volatile T7&> {
562 struct std::common_type<T7&, const volatile int&> {
567 struct std::common_type<int&, const volatile T7&> {
572 struct std::common_type<const T7&, int&> {
577 struct std::common_type<const int&, T7&> {
582 struct std::common_type<const T7&, const int&> {
587 struct std::common_type<const int&, const T7&> {
592 struct std::common_type<const T7&, volatile int&> {
597 struct std::common_type<const int&, volatile T7&> {
602 struct std::common_type<const T7&, const volatile int&> {
607 struct std::common_type<const int&, const volatile T7&> {
612 struct std::common_type<volatile T7&, int&> {
617 struct std::common_type<volatile int&, T7&> {
622 struct std::common_type<volatile T7&, const int&> {
627 struct std::common_type<volatile int&, const T7&> {
632 struct std::common_type<volatile T7&, volatile int&> {
637 struct std::common_type<volatile int&, volatile T7&> {
642 struct std::common_type<volatile T7&, const volatile int&> {
647 struct std::common_type<volatile int&, const volatile T7&> {
652 struct std::common_type<const volatile T7&, int&> {
657 struct std::common_type<const volatile int&, T7&> {
662 struct std::common_type<const volatile T7&, const int&> {
667 struct std::common_type<const volatile int&, const T7&> {
672 struct std::common_type<const volatile T7&, volatile int&> {
677 struct std::common_type<const volatile int&, volatile T7&> {
682 struct std::common_type<const volatile T7&, const volatile int&> {
687 struct std::common_type<const volatile int&, const volatile T7&> {
691 static_assert(HasValidCommonType<T7, int>());
692 static_assert(HasValidCommonType<const T7&, const int&>());
693 static_assert(HasCommonReference<const T7&, const int&>());
695 !HasCommonReference<std::common_type_t<T7, int>&,
696 std::common_reference_t<const T7&, const int&> >());
697 static_assert(!CheckCommonWith<T7, int>());