repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs1644-50.cs
blob
10817d74c0c74bffaa8b0a7ac1eda676c6fb9d3c
1
// CS1644: Feature `interpolated strings' cannot be used because it is not part of the C# 5.0 language specification
2
// Line: 9
3
// Compiler options: -langversion:5
4
5
public class
Program
6
{
7
public static void
Main
()
8
{
9
var
x
= $
"I should not compile"
;
10
}
11
}