mirror of https://github.com/Wilfred/difftastic/
Added a regression test for F#
parent
0e4723cf0e
commit
9a894d5369
@ -0,0 +1,22 @@
|
||||
namespace X
|
||||
|
||||
open System
|
||||
open System.IO
|
||||
|
||||
type A =
|
||||
| A of int
|
||||
| B of string
|
||||
|
||||
type Record = {
|
||||
A : string
|
||||
B : int
|
||||
}
|
||||
|
||||
module M =
|
||||
|
||||
let f y = y + 1
|
||||
|
||||
let list = [
|
||||
"a"
|
||||
"b"
|
||||
]
|
||||
@ -0,0 +1,13 @@
|
||||
namespace X
|
||||
|
||||
open System
|
||||
|
||||
type A = A of int
|
||||
|
||||
type Record = { A : string }
|
||||
|
||||
module M =
|
||||
|
||||
let f x = x + 1
|
||||
|
||||
let list = []
|
||||
Loading…
Reference in New Issue