Skip to content

Commit 7ee01f1

Browse files
committed
add testing
1 parent f835b5f commit 7ee01f1

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

tests/fsharp/core/longnames/test.fsx

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,27 @@ module rec Ok10 =
511511
module A =
512512
let create() = 1
513513

514+
module Ok11 =
515+
516+
type A = int
517+
518+
module A =
519+
let create() = 1
520+
521+
module Ok12 =
522+
523+
type A = A
524+
525+
module A =
526+
let create() = 1
527+
528+
module Ok13 =
529+
530+
type A = A of string
531+
532+
module A =
533+
let create() = 1
534+
514535
let aa =
515536
if !failures then (stdout.WriteLine "Test Failed"; exit 1)
516537

0 commit comments

Comments
 (0)