Skip to content

Commit

Permalink
Fix a case where dotnet#95 is violated in the compiler itself
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Jan 26, 2015
1 parent 7c9c968 commit e8a652e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fsharp/check.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1471,6 +1471,6 @@ let CheckTopImpl (g,amap,reportErrors,infoReader,internalsVisibleToPaths,viewCcu

CheckModuleExpr cenv env mexpr;
CheckAttribs cenv env extraAttribs;
if cenv.usesQuotations && QuotationTranslator.QuotationGenerationScope.ComputeQuotationFormat(cenv.g) = QuotationTranslator.FSharp_20_Plus then
if cenv.usesQuotations && QuotationTranslator.QuotationGenerationScope.ComputeQuotationFormat(cenv.g) = QuotationTranslator.QuotationSerializationFormat.FSharp_20_Plus then
viewCcu.UsesFSharp20PlusQuotations <- true
cenv.entryPointGiven

0 comments on commit e8a652e

Please sign in to comment.