Skip to content

Commit

Permalink
Fix CI by renaming ambiguous 'data' in tests to something else (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar authored Aug 11, 2024
1 parent d3b7958 commit 2d6b238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/resources/os/program_ml.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <bits/stdc++.h>
using namespace std;

int data[10000000];
int arr[10000000];

int main() {
return data[42];
return arr[42];
}

0 comments on commit 2d6b238

Please sign in to comment.