public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/114504] New: Non-structural type accepted as non-type template parameter type
@ 2024-03-27 23:06 ted at lyncon dot se
  2024-03-27 23:14 ` [Bug c++/114504] " pinskia at gcc dot gnu.org
  2024-03-27 23:23 ` [Bug c++/114504] Non-structural type accepted as non-type template parameter type for a template lambda function while in a concept pinskia at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: ted at lyncon dot se @ 2024-03-27 23:06 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=114504

            Bug ID: 114504
           Summary: Non-structural type accepted as non-type template
                    parameter type
           Product: gcc
           Version: 14.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: ted at lyncon dot se
  Target Milestone: ---

gcc accepts `NonStructuralType` as a non-type template parameter type below:
```
struct StructuralType1 {
    constexpr StructuralType1(int A) : a(A) {}
    int a;
};

struct NonStructuralType {
    constexpr NonStructuralType(int A) : a(A) {}
private:
    int a;
};

template <typename T>
concept is_structural = requires { []<T t> {}; };

static_assert(is_structural<StructuralType1>,
              "BUG! StructuralType1 is not structural");

static_assert(!is_structural<NonStructuralType>,
              "BUG! NontStructuralType is structural");

int main() {}
```
I was expecting `[]<T t>{}` to fail in the concept. The program compiles with
clang++, icx and MSVC.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-03-27 23:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-27 23:06 [Bug c++/114504] New: Non-structural type accepted as non-type template parameter type ted at lyncon dot se
2024-03-27 23:14 ` [Bug c++/114504] " pinskia at gcc dot gnu.org
2024-03-27 23:23 ` [Bug c++/114504] Non-structural type accepted as non-type template parameter type for a template lambda function while in a concept pinskia at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).