Skip to content

Commit 4e260fa

Browse files
committed
Enable is for type_traits tests cases
1 parent 6bb1640 commit 4e260fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

regression-tests/mixed-overview-of-is-inspections.cpp2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ main: () = {
9595
print("3.14f is (close_to(3.14 ))", 3.14f is (close_to(3.14 )), true);
9696
print("3.14 is (close_to(3.14f))", 3.14 is (close_to(3.14f)), true);
9797
}
98-
/*
98+
9999
// type_trait
100100
{
101101
i : int = 42;
@@ -106,7 +106,7 @@ main: () = {
106106
print("ci{const int} is std::is_integral", ci is std::is_integral, true);
107107
print("ci{const int} is std::is_floating_point", ci is std::is_floating_point, false);
108108
}
109-
*/
109+
110110
// predicate
111111
{
112112
d := 3.14;

0 commit comments

Comments
 (0)