Uncomment tests in return_type_of1.C

This commit is contained in:
Marek Polacek
2026-01-09 11:39:38 -05:00
parent ac5556df0e
commit 1921bd08d7

View File

@@ -84,16 +84,16 @@ struct V
V ()
{
int i = 42;
// static_assert (!has_return_type_of (parent_of (^^i)));
static_assert (!has_return_type_of (parent_of (^^i)));
}
~V ()
{
int i = 42;
// static_assert (!has_return_type_of (parent_of (^^i)));
static_assert (!has_return_type_of (parent_of (^^i)));
}
V (int, long)
{
int i = 42;
// static_assert (!has_return_type_of (parent_of (^^i)));
static_assert (!has_return_type_of (parent_of (^^i)));
}
};