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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs8094.cs
blob
a8792ce8390ef8f7449e5c760547313ec118e284
1
// CS8094: Alignment value has a magnitude greater than 32767 and may result in a large formatted string
2
// Line: 9
3
// Compiler options: -warnaserror
4
5
class
Program
6
{
7
static void
Main
()
8
{
9
var
s
= $
"
{1, int.MaxValue }
"
;
10
}
11
}