Skip to content

Commit

Permalink
Remove embarasing string
Browse files Browse the repository at this point in the history
  • Loading branch information
garronej committed Nov 18, 2024
1 parent e550a55 commit ccfda90
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/MethodNames.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ import type { Equals } from "../src/Equals";
assert<Equals<Got, Expected>>();
}

class Car {
public readonly foo: string;
{
class Car {
public readonly foo: string;

constructor() {
this.foo = "caca";
constructor() {
this.foo = "value of foo";
}
}
}

{
type A = {
a: unknown;
b: unknown;
Expand Down

0 comments on commit ccfda90

Please sign in to comment.