We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca0effb commit dfcf8c6Copy full SHA for dfcf8c6
1 file changed
test/betterC/typecons.d
@@ -0,0 +1,7 @@
1
+extern(C) void main()
2
+{
3
+ import std.typecons;
4
+ auto t = tuple(1, 2);
5
+ assert(t == tuple(1, 2));
6
+ auto t3 = tuple(1, 'd');
7
+}
0 commit comments