PowerShell/test/powershell/Language/Classes/MSFT_778492.psm1
Steve Lee 2639cd89ce Autocorrected CRLF to LF (#4943)
Also, fix `Parser.Tests.ps1` after correcting CRLF.
2017-09-29 16:28:15 -07:00

16 lines
169 B
PowerShell

$foo = 'MSFT_778492 script scope'
class MSFT_778492
{
[string] F()
{
return $script:foo
}
}
function Get-MSFT_778492
{
[MSFT_778492]::new()
}