forked from JetBrains/resharper-fsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Daemon/fcs: temp ignore 1182 false positive for query symbols
- Loading branch information
1 parent
cdc675c
commit baae79b
Showing
4 changed files
with
44 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
ReSharper.FSharp/test/data/features/daemon/fcsErrors/Unused value - Query 01.fs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module Module | ||
|
||
let _ = | ||
query { | ||
join a in [] on ("" = a) | ||
join c in [] on ("" = "") | ||
select a | ||
} |
11 changes: 11 additions & 0 deletions
11
ReSharper.FSharp/test/data/features/daemon/fcsErrors/Unused value - Query 01.fs.gold
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
module Module | ||
|
||
let _ = | ||
query { | ||
join a in [] on ("" = a) | ||
join |c|(0) in [] on ("" = "") | ||
select a | ||
} | ||
|
||
--------------------------------------------------------- | ||
(0): ReSharper Dead Code: The value 'c' is unused |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters