Changeset d60a4c2 for tests/tuple/tupleVariadic.cfa
- Timestamp:
- Jan 11, 2025, 5:48:46 PM (8 months ago)
- Branches:
- master
- Children:
- f886608
- Parents:
- 7d65715f (diff), 32a119e9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/tuple/tupleVariadic.cfa
r7d65715f rd60a4c2 98 98 } 99 99 100 forall(T... | { void foo(T); }) void bar( T x) {}100 forall(T... | { void foo(T); }) void bar( T ) {} 101 101 void foo(int) {} 102 102 … … 126 126 { 127 127 // T = [const int] -- this ensures that void(*)(int) satisfies void(*)(const int) 128 const int x ;128 const int x = 42; 129 129 bar(x); 130 130 }
Note:
See TracChangeset
for help on using the changeset viewer.