Skip to content

Commit

Permalink
Merge pull request #44 from kelloggm/line-endings
Browse files Browse the repository at this point in the history
Fix surprising, nonsensical test failure
  • Loading branch information
LoiNguyenCS authored Nov 14, 2023
2 parents 0173cab + 231667c commit 9ec1253
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package com.example;

class Simple {
package com.example;

class Simple {

static int returnTen() {
throw new Error();
}
static void test() {
int y = returnTen();
Simple s = new Simple();
}
}
}

static void test() {
int y = returnTen();
Simple s = new Simple();
}
}

0 comments on commit 9ec1253

Please sign in to comment.